-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
43 lines (43 loc) · 922 Bytes
/
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
{
"name": "welp/mailchimp-bundle",
"description": "MailChimp API V3 Symfony Bundle",
"type": "symfony-bundle",
"homepage": "https://github.com/welpdev/mailchimp-bundle",
"license": "MIT",
"keywords": [
"Symfony",
"MailChimp",
"API",
"V3",
"User",
"Subscriber"
],
"authors": [
{
"name": "Titouan BENOIT",
"email": "titouan@welp.today"
}
],
"autoload": {
"psr-4": {
"Welp\\MailchimpBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6",
"drewm/mailchimp-api": "2.5.*"
},
"require-dev": {
"phpspec/phpspec": "~2@dev",
"phpunit/phpunit": "~5",
"symfony/symfony": ">=2.7"
},
"config": {
"bin-dir": "bin"
}
}