-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 883 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 883 Bytes
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
{
"name": "semaio/mailchimp-api",
"type": "library",
"description": "PHP library to consume the MailChimp api.",
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2",
"php-http/discovery": "^1.6",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "^1.0"
},
"require-dev": {
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.4",
"vimeo/psalm": "^3.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Semaio\\MailchimpApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Semaio\\MailchimpApi\\Tests\\": "tests/"
}
},
"suggest": {
"php-http/guzzle6-adapter": "In order to use Guzzle v6 as the HTTP client"
}
}