-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
85 lines (85 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "azuracast/azurarelay",
"description": "A companion relay tool to the AzuraCast web radio management suite.",
"homepage": "https://github.com/AzuraCast/AzuraRelay",
"license": "Apache-2.0",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-xmlwriter": "*",
"azuracast/nowplaying": "dev-main",
"azuracast/php-api-client": "dev-main",
"guzzlehttp/guzzle": "^7",
"lstrojny/fxmlrpc": "dev-master",
"monolog/monolog": "^3",
"php-di/php-di": "^7",
"skoerfgen/acmecert": "^3.2",
"supervisorphp/supervisor": "dev-main",
"symfony/console": "^7",
"symfony/event-dispatcher": "^7",
"symfony/filesystem": "^7"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.6",
"squizlabs/php_codesniffer": "^3.7",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"symfony/var-dumper": "^6.1"
},
"replace": {
"symfony/polyfill-php71": "1.99",
"symfony/polyfill-php72": "1.99",
"symfony/polyfill-php73": "1.99",
"symfony/polyfill-php74": "1.99",
"symfony/polyfill-php80": "1.99",
"symfony/polyfill-php81": "1.99",
"symfony/polyfill-php82": "1.99",
"symfony/polyfill-php83": "1.99"
},
"scripts": {
"cleanup-and-test": [
"@phpcbf",
"@test"
],
"test": [
"@composer install",
"@phplint",
"@phpstan",
"@phpcs"
],
"ci": [
"parallel-lint . --exclude vendor --checkstyle | cs2pr",
"phpstan analyze --memory-limit=-1 --error-format=checkstyle | cs2pr",
"phpcs --report=checkstyle | cs2pr"
],
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze --memory-limit=-1"
},
"authors": [
{
"name": "Buster Neece",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"App\\": "backend/src"
}
},
"config": {
"preferred-install": "dist",
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}