-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.2 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
{
"name": "orbeji/unused-routes",
"description": "",
"license": "MIT",
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "5.4 || ^6.4 || ^7.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.41",
"nyholm/symfony-bundle-test": "^3.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5.5",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.8",
"symfony/phpunit-bridge": "^7.0.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Orbeji\\UnusedRoutes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Orbeji\\UnusedRoutes\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"symfony/flex": true
},
"sort-packages": true
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}