-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 926 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 926 Bytes
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
{
"name": "bab/tested-routes-checker-bundle",
"description": "A bundle to ensure all routes of a Symfony application have been tested",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Bab\\TestedRoutesCheckerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bab\\TestedRoutesCheckerBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"symfony/config": "^6.4|^7.3|^8.0",
"symfony/console": "^6.4|^7.3|^8.0",
"symfony/dependency-injection": "^6.4|^7.3|^8.0",
"symfony/http-kernel": "^6.4|^7.3|^8.0",
"symfony/routing": "^6.4|^7.3|^8.0"
},
"config": {
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/framework-bundle": "^6.4|^7.3|^8.0",
"symfony/phpunit-bridge": "^8.0"
}
}