-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.43 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.43 KB
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": "macpaw/symfony-deprecated-routes",
"description": "Symfony Deprecated Routes Annotations",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"symfony/config": "^6.4 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
"symfony/routing": "^6.4 || ^7.0 || ^8.0",
"symfony/event-dispatcher": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"symfony/browser-kit": "^6.4 || ^7.0 || ^8.0",
"phpunit/phpunit": "^12.5",
"squizlabs/php_codesniffer": "^4.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"phpstan/phpstan-symfony": "^2.0",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"Macpaw\\SymfonyDeprecatedRoutes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Macpaw\\SymfonyDeprecatedRoutes\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-fix": [
"vendor/bin/phpcbf"
],
"rector": [
"vendor/bin/rector process --config rector.php"
],
"validate": [
"composer validate"
]
},
"minimum-stability": "stable"
}