forked from sameday-courier/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 967 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
{
"name": "sameday-courier/php-sdk",
"description": "Sameday Courier SDK for PHP",
"keywords": ["sameday", "courier", "sdk"],
"type": "library",
"homepage": "https://github.com/sameday-courier/php-sdk",
"license": "MIT",
"authors": [
{
"name": "Sameday Courier",
"homepage": "https://github.com/sameday-courier/php-sdk/contributors"
}
],
"require": {
"ext-json": "*",
"php": "^5.4|^7.0|^8.0"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "~5.4|>=9.5",
"guzzlehttp/guzzle": "~5.0",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client"
},
"autoload": {
"psr-4": {
"Sameday\\": "src/Sameday/"
}
},
"autoload-dev": {
"psr-4": {
"Sameday\\Tests\\": "tests/"
}
}
}