-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.12 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "xactsystems/js-routing-bundle",
"description": "A JS routing bundle for Symfony 4+ using webpack. Derived from the FOS JSRoutingBundle. See 3.4 branch for Symfony 3.4.",
"type": "symfony-bundle",
"license": "MIT",
"version": "4.4.4",
"authors": [
{
"name": "Ian Foulds",
"email": "ianfoulds@x-act.co.uk"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0.1-dev"
}
},
"autoload": {
"psr-4": {
"Xact\\JSRoutingBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Xact\\JSRoutingBundle\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"require": {
"php": "^7.0",
"symfony/framework-bundle": "~4.0 || ~5.0",
"symfony/asset": "~4.0 || ~5.0",
"symfony/serializer-pack": "~1.0 || *",
"symfony/twig-pack": "~1.0 || *",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "~4.0 || ~5.0"
},
"require-dev": {
"symfony/debug-pack": "*",
"symfony/phpunit-bridge": "^5.1"
}
}