forked from FriendsOfSymfony/FOSJsRoutingBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.19 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
38
39
40
{
"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": "^7.1",
"symfony/framework-bundle": "~3.3|^4.0|^5.0",
"symfony/serializer": "~3.3|^4.0|^5.0",
"symfony/console": "~3.3|^4.0|^5.0",
"willdurand/jsonp-callback-validator": "~1.0"
},
"require-dev": {
"symfony/expression-language": "~3.3|^4.0|^5.0",
"symfony/phpunit-bridge": "^3.3|^4.0"
},
"autoload": {
"psr-4": { "FOS\\JsRoutingBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}