forked from FriendsOfSymfony/FOSJsRoutingBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.11 KB
/
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
{
"name": "friendsofsymfony/jsrouting-bundle",
"type": "symfony-bundle",
"description": "A pretty nice way to expose your Symfony2 routing to client applications.",
"keywords": [ "js routing", "routing", "javascript" ],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "[email protected]"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSJsRoutingBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.3||~3.0",
"symfony/serializer": "~2.0||~3.0",
"symfony/console": "~2.3||~3.0",
"willdurand/jsonp-callback-validator": "~1.0"
},
"require-dev": {
"symfony/expression-language": "~2.4||~3.0",
"symfony/phpunit-bridge": "~2.7||~3.0"
},
"autoload": {
"psr-4": { "FOS\\JsRoutingBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}