-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.12 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
{
"name": "partfire/mailchimp-bundle",
"description": "A set of Symfony services for use in your project in integrate with MailChimp.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Carl Owens",
"email": "carl@partfire.co.uk",
"homepage": "https://partfire.co.uk"
},
{
"name": "Graham Owens",
"email": "gra@partfire.co.uk",
"homepage": "https://partfire.co.uk"
},
{
"name": "PartFire Ltd",
"homepage": "https://github.com/PartFire"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^2.7 || ^3.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"autoload": {
"psr-4": {
"PartFire\\MailChimpBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/",
"spec"
]
},
"autoload-dev": {
"psr-4": {
"PartFire\\MailChimpBundle\\Tests\\": "Tests/",
"PartFire\\MailChimpBundle\\spec\\": "spec/"
}
}
}