forked from widmogrod/zf2-assetic-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.07 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
{
"name": "widmogrod/zf2-assetic-module",
"type": "library",
"description": "Zend Framework 2 module that provides complete integration of Assetic library",
"keywords": ["assetic", "assets", "resources", "css", "js", "less"],
"homepage": "https://github.com/widmogrod/zf2-assetic-module",
"license": "MIT",
"authors": [
{
"name": "Gabriel Habryn",
"email": "[email protected]",
"homepage": "https://github.com/widmogrod/zf2-assetic-module",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"kriswallsmith/assetic": "1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"zendframework/zendframework": "2.*"
},
"suggest": {
"leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
"leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler"
},
"autoload": {
"psr-0": {
"AsseticBundle": "src"
},
"classmap": ["Module.php"]
}
}