-
Notifications
You must be signed in to change notification settings - Fork 91
/
composer.json
40 lines (40 loc) · 943 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
{
"name": "sparkpost/sparkpost",
"description": "Client library for interfacing with the SparkPost API.",
"license": "MIT",
"authors": [
{
"name": "SparkPost"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit",
"fix-style": "php-cs-fixer fix ."
},
"require": {
"php": "^7.1 || ^8.0",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"php-http/guzzle6-adapter": "^1.0",
"mockery/mockery": "^1.3",
"nyholm/nsa": "^1.0",
"php-coveralls/php-coveralls": "^2.4",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload": {
"psr-4": {
"SparkPost\\": "lib/SparkPost"
}
},
"autoload-dev": {
"psr-4": {
"SparkPost\\Test\\": "test/unit"
}
}
}