-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 954 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": "christianezeani/mailchimp",
"description": "MailChimp API wrapper",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Ezeani"
}
],
"scripts": {
"test": [
"phpunit --testdox --testdox-html ./tests/reports/report.html --testdox-text ./tests/reports/report.txt"
],
"docs": [
"phpdoc -d ./src/MailChimp -t \"./docs/api\" --template=\"responsive-twig\""
],
"post-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"require": {
"php": ">=5.5.0"
},
"extra": {
"laravel": {
"providers": [
"MailChimp\\Framework\\Laravel\\MailChimpServiceProvider"
]
}
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*",
"phpunit/phpunit": "^7.5",
"vlucas/phpdotenv": "^3.3"
},
"autoload": {
"psr-4": {
"MailChimp\\": "src/MailChimp"
},
"files": []
}
}