-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.3 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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
45
46
{
"name": "chargebee/chargebee-php",
"type": "library",
"description": "ChargeBee API client implementation for PHP",
"keywords": [
"chargebee",
"payments",
"subscription billing",
"recurring billing"
],
"license": "MIT",
"homepage": "https://github.com/chargebee/chargebee-php",
"require": {
"php": ">=8.1.0",
"guzzlehttp/guzzle": ">=7",
"php-http/discovery": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"suggest": {
"psr/http-client-implementation": "Any PSR-18 HTTP client (e.g. symfony/http-client) — in a future major version Guzzle will become optional.",
"psr/http-factory-implementation": "Any PSR-17 factory (e.g. nyholm/psr7) — required if you inject a PSR-18 client without PSR-17 factories and Guzzle is not installed."
},
"autoload": {
"psr-4": {
"Chargebee\\": "src/"
},
"files": [
"src/ChargebeeClient.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.3"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}