-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
71 lines (71 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "azuracast/nowplaying",
"description": "A lightweight PHP adapter for viewing the current now playing data in Icecast and SHOUTcast 1/2. A part of the AzuraCast software suite.",
"license": "Apache-2.0",
"require": {
"php": ">=8.1",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-libxml": "*",
"ext-json": "*",
"guzzlehttp/guzzle": ">7",
"psr/http-client": "*",
"psr/http-factory": "*",
"psr/log": ">=1"
},
"require-dev": {
"phpstan/phpstan": "^1",
"roave/security-advisories": "dev-latest",
"php-parallel-lint/php-console-highlighter": "^1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-http/discovery": "^1.9",
"squizlabs/php_codesniffer": "^3.10",
"slevomat/coding-standard": "^8.15",
"staabm/annotate-pull-request-from-checkstyle": "^1.8"
},
"scripts": {
"cleanup-and-test": [
"@phpcbf",
"@dev-test"
],
"test": [
"@composer install",
"@dev-test"
],
"dev-test": [
"@phplint",
"@phpstan",
"@phpcs"
],
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze --memory-limit=-1",
"ci": [
"@composer install",
"parallel-lint . --exclude vendor --checkstyle | cs2pr",
"phpstan analyze --memory-limit=-1 --error-format=checkstyle | cs2pr",
"phpcs --report=checkstyle | cs2pr"
]
},
"authors": [
{
"name": "Buster Neece",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NowPlaying\\": "src"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}