-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 974 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
39
40
41
42
{
"name": "ibexa/templated-uri-router",
"description": "Fork of hautelook/templated-uri-router. Symfony2 RFC-6570 compatible router and URL Generator",
"keywords": [
"Symfony2",
"URI",
"URL",
"RFC 6570",
"JSON",
"XML",
"Hateoas",
"Router"
],
"license": "MIT",
"homepage": "http://www.hautelooktech.com/",
"authors": [
{
"name": "Baldur Rensch",
"email": "[email protected]"
}
],
"replace": {
"hautelook/templated-uri-router": "self.version"
},
"require": {
"php": "^7.4 || ^8.0",
"symfony/routing": "~2.5|~3.0|^4.0|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5.7|^6.5"
},
"autoload": {
"psr-4": {
"Hautelook\\TemplatedUriRouter\\": ""
}
},
"extra": {
"branch-alias": {
"dev-main": "4.0.x-dev"
}
}
}