-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
40 lines (40 loc) · 963 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
{
"name": "hautelook/templated-uri-router",
"description": "Symfony2 RFC-6570 compatible router and URL Generator",
"keywords": [
"Symfony2",
"URI",
"URL",
"RFC 6570",
"JSON",
"XML",
"Hateoas",
"Router"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "http://www.hautelooktech.com/",
"authors": [
{
"name": "Baldur Rensch",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"symfony/routing": ">=2.1"
},
"require-dev": {
"symfony/framework-bundle": ">=2.1"
},
"autoload": {
"psr-0": {
"Hautelook\\TemplatedUriRouter": ""
}
},
"suggest": {
"hautelook/templated-uri-bundle": "Bundle that integrates the templated router"
},
"target-dir": "Hautelook/TemplatedUriRouter",
"minimum-stability": "dev"
}