-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
44 lines (44 loc) · 1.16 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "chargely/chargify-sdk-php",
"homepage": "https://github.com/chargely/chargify-sdk-php",
"description": "Chargify SDK for PHP - Use the Chargify API in your PHP project",
"keywords": [
"chargify",
"chargify direct",
"chargify v2",
"billing portal",
"api",
"sdk",
"php",
"chargely"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Chargely",
"homepage": "http://www.chargely.com"
}
],
"support": {
"issues": "https://github.com/chargely/chargify-sdk-php/issues"
},
"require": {
"php": ">=8.1.0",
"guzzlehttp/guzzle": "^7.8.0",
"guzzlehttp/psr7": "^2.5.1",
"guzzlehttp/promises": "^2.0.1"
},
"require-dev": {
"phpunit/phpunit": "8.5.*",
"monolog/monolog": "^1.21",
"friendsofphp/php-cs-fixer": "^3.9"
},
"autoload": {
"psr-4": {
"Crucial\\Service\\": "src/Crucial/Service",
"Test\\Helpers\\": "tests/phpunit/helpers",
"Test\\Crucial\\": "tests/phpunit/lib/Crucial"
}
}
}