forked from AzuraCast/php-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (49 loc) · 1.32 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "azuracast/php-api-client",
"description": "An API client library for the AzuraCast API",
"keywords": ["azuracast", "api", "client"],
"homepage": "https://github.com/AzuraCast/php-api-client",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Vaalyn",
"email": "[email protected]"
},
{
"name": "Buster 'Silver Eagle' Neece",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"ext-gd": "*",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"overtrue/phplint": "^1.1",
"phpstan/phpstan": "^0.11.1",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master",
"vlucas/phpdotenv": "^3.4"
},
"autoload": {
"psr-4": {
"AzuraCast\\Api\\": "src"
}
},
"scripts": {
"test": [
"@composer install",
"@phplint",
"@phpstan",
"@phpunit"
],
"phplint": "phplint",
"phpstan": "phpstan analyze",
"phpunit": "phpunit tests/AzuraCastApiClient/AzuraCastApiClientTest.php"
}
}