-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 930 Bytes
/
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
{
"name": "thewunder/croute",
"description": "Convention based routing for PHP",
"keywords": ["routing", "router"],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Michael O'Connell",
"email": "wundbread@gmail.com"
}
],
"autoload": {
"psr-4": { "Croute\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Croute\\Test\\": "test/"}
},
"require": {
"php": ">=8.1",
"symfony/http-foundation": "^6.0|^7.0",
"symfony/routing": "^6.0|^7.0",
"psr/event-dispatcher": "^1.0",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/event-dispatcher": "^6.0|^7.0",
"rector/rector": "^1.0",
"mikey179/vfsstream": "^1.6"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}