-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.17 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
45
46
47
48
{
"name": "stefna/php-mailchimp-api-v3",
"description": "Mailchimp v3 API client for PHP",
"license": "MIT",
"keywords": [
"mailchimp"
],
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"php-http/curl-client": "^2.3",
"php-http/message": "^1.0",
"nyholm/psr7": "^1.8",
"guzzlehttp/psr7": "^2.6",
"monolog/monolog": "^2.0",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.0 || ^10.0",
"phpstan/phpstan": "^1.0",
"stefna/codestyle": "^1.0"
},
"autoload": {
"psr-4": {
"Stefna\\Mailchimp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Stefna\\Mailchimp\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-ci": "./vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml",
"stan": "./vendor/bin/phpstan",
"codestyle": "./vendor/bin/phpcs -n --standard=vendor/stefna/codestyle/library.xml src/",
"codestyle-fix": "./vendor/bin/phpcbf --colors --standard=vendor/stefna/codestyle/library.xml src/"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}