forked from neilime/zf2-assets-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
{
"name": "neilime/zf2-assets-bundle",
"type": "library",
"description": "Zend Framework module that provides assets bundling / caching",
"keywords": ["assets", "bundle", "cache", "zf2","zend framework", "css", "js", "less"],
"homepage": "http://neilime.github.io/zf2-assets-bundle/",
"license": "MIT",
"authors": [
{
"name": "Neilime",
"homepage": "https://github.com/neilime",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/neilime/zf2-assets-bundle/issues"
},
"minimum-stability": "stable",
"suggest": {
"ext-gd2": "GD library to compress png files",
"neilime/lessphp": "The lessphp fork, to use the Lessc filter"
},
"require": {
"php": ">=5.3.3",
"zendframework/zend-servicemanager": "2.*@stable",
"zendframework/zend-eventmanager": "2.*@stable",
"zendframework/zend-http": "2.*@stable",
"zendframework/zend-mvc": "2.*@stable",
"zendframework/zend-modulemanager": "2.*@stable",
"zendframework/zend-config": "2.*@stable",
"zendframework/zend-console": "2.*@stable",
"zendframework/zend-view": "2.*@stable",
"zendframework/zend-serializer": "2.*@stable",
"zendframework/zend-log": "2.*@stable",
"zendframework/zend-i18n": "2.*@stable",
"oyejorge/less.php": "1.*@stable",
"mrclay/minify": "2.*@stable",
"tedivm/jshrink": "1.*@stable"
},
"require-dev": {
"zendframework/zend-test": "2.*.*",
"phpunit/phpunit": "4.*.*",
"satooshi/php-coveralls": "1.*.*",
"neilime/lessphp": "0.*.*"
},
"autoload": {
"psr-4": {
"AssetsBundle\\": "src/AssetsBundle"
},
"classmap": ["Module.php"]
},
"autoload-dev": {
"psr-4": {
"TestSuite\\": "tests/TestSuite"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}