-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
53 lines (52 loc) · 1.41 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
51
52
53
{
"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": "vaalyndev@gmail.com"
},
{
"name": "Buster Neece",
"email": "buster@busterneece.com"
}
],
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"ext-gd": "*",
"guzzlehttp/guzzle": ">=7.0"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-latest",
"vlucas/phpdotenv": "^5.2"
},
"autoload": {
"psr-4": {
"AzuraCast\\Api\\": "src"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"@composer install",
"@phplint",
"@phpstan",
"@phpunit"
],
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze --memory-limit=-1",
"phpunit": "phpunit tests/AzuraCastApiClient/AzuraCastApiClientTest.php"
}
}