-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.83 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.83 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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": "will+git@drnd.me"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSJsRoutingBundle/contributors"
}
],
"require": {
"php": "^8.0",
"symfony/console": "^5.4|^6.4|^7.3|^8.0",
"symfony/deprecation-contracts": "^2.1|^3.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.3|^8.0",
"symfony/serializer": "^5.4|^6.4|^7.3|^8.0",
"willdurand/jsonp-callback-validator": "~1.1|^2.0"
},
"require-dev": {
"neronmoon/scriptsdev": "^0.1",
"jakoch/phantomjs-installer": "^3",
"symfony/expression-language": "^5.4|^6.4|^7.3|^8.0",
"symfony/phpunit-bridge": "^7.3|^8.0"
},
"autoload": {
"psr-4": { "FOS\\JsRoutingBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"allow-plugins": {
"neronmoon/scriptsdev": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"scripts-dev": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
},
"jakoch/phantomjs-installer": {
"cdnurl": "https://github.com/Medium/phantomjs/releases/download/v2.1.1/"
}
}
}