-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.02 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
{
"name": "servebolt/sdk",
"description": "A PHP SDK for communicating with the Servebolt API.",
"type": "library",
"homepage": "https://servebolt.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Killen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"jakeasmith/http_build_url": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phan/phan": "^4.0",
"squizlabs/php_codesniffer": "^3.5",
"overtrue/phplint": "^2.3",
"mockery/mockery": "^1.4",
"vlucas/phpdotenv": "^5.3",
"dms/phpunit-arraysubset-asserts": "^0.2.1"
},
"autoload": {
"psr-4": {
"Servebolt\\Sdk\\": "src/Servebolt"
}
},
"scripts": {
"phpunit": "ci/runtests",
"test": ["ci/phpcs.sh","ci/phplint.sh","ci/phan.sh"]
}
}