-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
50 lines (50 loc) · 1.32 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
45
46
47
48
49
50
{
"name": "chartmogul/chartmogul-php",
"description": "ChartMogul API PHP Client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ChartMogul Ltd.",
"email": "support@chartmogul.com"
},
{
"name": "Mahmudul Hassan",
"email": "hassan@chartmogul.com"
}
],
"autoload": {
"psr-4": {
"ChartMogul\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ChartMogul\\Tests\\": "tests/Unit",
"ChartMogul\\IntegrationTests\\": "tests/Integration"
}
},
"require": {
"php": ">=7.1",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-client-implementation": "^1.0",
"doctrine/collections": "^1.6 || ^2.0",
"stechstudio/backoff": "^1.0",
"php-http/discovery": "^1.13",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"php-http/mock-client": "^1.5",
"guzzlehttp/psr7": "^1.0",
"http-interop/http-factory-guzzle": "^1.0",
"php-vcr/php-vcr": "^1.5",
"php-http/curl-client": "^2.2",
"squizlabs/php_codesniffer": "*",
"friendsofphp/php-cs-fixer": "^3.34"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}