-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 884 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
37
38
{
"name": "quimcalpe/router",
"description": "Regexp based Router, easy to use and with a rich feature set",
"keywords": [
"route",
"dispatcher",
"psr-7",
"uri"
],
"homepage": "https://github.com/quimcalpe/router",
"license": "MIT",
"authors": [
{
"name": "Quim Calpe",
"email": "quim@kalpe.com"
}
],
"require": {
"php": ">=8.1",
"symfony/http-foundation": "^6.2",
"psr/http-message": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"QuimCalpe\\Router\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QuimCalpe\\Router\\Test\\": "tests/"
}
},
"minimum-stability": "stable"
}