-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
52 lines (52 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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": "widmogrod@gmail.com",
"homepage": "https://github.com/widmogrod/zf2-assetic-module",
"role": "Developer"
}
],
"bin": [
"bin/assetic"
],
"require": {
"php": "^7.3",
"assetic/framework": "~2.0.0",
"widmogrod/php-functional": "^1.0",
"zendframework/zend-mvc": "^3.0",
"symfony/console": "^3.1.3 | ^4.0 | ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^2.17"
},
"suggest": {
"leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
"leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler"
},
"scripts": {
"test": "phpunit",
"fix-code": "php-cs-fixer fix",
"check-code": "php-cs-fixer fix src/ --verbose --diff --dry-run --using-cache=no"
},
"autoload": {
"psr-0": {
"AsseticBundle": "src"
},
"classmap": ["Module.php"]
}
}