forked from hostnet/webpack-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.21 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "hostnet/webpack-bundle",
"type": "symfony-bundle",
"description": "Integrates Webpack with Symfony",
"license": "MIT",
"require": {
"php": "^7.1.0",
"ext-json": "*",
"symfony/monolog-bundle": "^4.0.0||^3.1.0",
"symfony/symfony": "^4.0.0||^3.3.0",
"twig/twig": "^2.7.2"
},
"require-dev": {
"hostnet/phpcs-tool": "^8.3.2",
"phpunit/phpunit": "^6.2.2",
"symfony/phpunit-bridge": "^3.3.2"
},
"conflict": {
"phpdocumentor/type-resolver": "<0.2.1"
},
"autoload": {
"psr-4": {
"Hostnet\\Bundle\\WebpackBundle\\": "src/Bundle",
"Hostnet\\Component\\Webpack\\": "src/Component"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Fixture\\WebpackBundle\\": "test/Fixture",
"Hostnet\\Bundle\\WebpackBundle\\": "test/Bundle",
"Hostnet\\Component\\Webpack\\": "test/Component",
"Hostnet\\Tests\\": "test"
}
},
"archive": {
"exclude": [
"/test"
]
}
}