forked from palpalani/mailchimp-api-v3
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 763 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 763 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": "pacely/mailchimp-apiv3",
"description": "Simple API wrapper for Mailchimp API V3",
"type": "library",
"keywords": [
"mailchimp",
"api",
"php",
"v3"
],
"license": "MIT",
"authors": [
{
"name": "Chris Magnussen",
"email": "chris@hirvi.no"
}
],
"autoload": {
"psr-4": {
"Mailchimp\\": "src/"
}
},
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "~5.0|~6.0",
"illuminate/support": "~5.0"
},
"require-dev": {
"phpspec/phpspec": "~2.2"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev"
}