-
Notifications
You must be signed in to change notification settings - Fork 262
/
composer.json
40 lines (40 loc) · 1.2 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 Symfony 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": "^8.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/serializer": "^5.4|^6.0.1|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"willdurand/jsonp-callback-validator": "~1.1|^2.0"
},
"require-dev": {
"symfony/expression-language": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": { "FOS\\JsRoutingBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}