-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1007 Bytes
/
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
{
"name": "bestit/on-demand-assets-bundle",
"keywords": [
"assets",
"css",
"javascript",
"http2",
"bem",
"twig"
],
"description": "This bundle provides you with an easy way to include assets on demand, but still include them in your header or footer. This can be used for your BEM blocks or facilitates HTTP2.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Björn Lange",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BestIt\\OnDemandAssetsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BestIt\\OnDemandAssetsBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.0",
"symfony/symfony": "^3.1",
"twig/twig": "v1.42.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "^5.5"
}
}