This repository has been archived by the owner on Oct 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
65 lines (65 loc) · 2.12 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
63
64
65
{
"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": "^7.0",
"oyejorge/less.php": "^1.7",
"tedivm/jshrink": "^1.3",
"tubalmartin/cssmin": "^4.1",
"zendframework/zend-config": "^2.6",
"zendframework/zend-console": "^2.6",
"zendframework/zend-eventmanager": "^2.6",
"zendframework/zend-http": "^2.5",
"zendframework/zend-i18n": "^2.6",
"zendframework/zend-log": "^2.7",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-mvc": "^2.7",
"zendframework/zend-serializer": "^2.6",
"zendframework/zend-servicemanager": "^2.7",
"zendframework/zend-view": "^2.6"
},
"require-dev": {
"neilime/lessphp": "^0.5",
"phpunit/phpunit": "^5.0",
"zendframework/zend-test": "^2.6"
},
"autoload": {
"psr-4": {
"AssetsBundle\\": "src/AssetsBundle"
},
"classmap": ["Module.php"]
},
"autoload-dev": {
"psr-4": {
"TestSuite\\": "tests/TestSuite"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": "cd tests && phpunit -d max_execution_time=0 && cd ..",
"test:ci": "cd tests && phpunit -d max_execution_time=0 --coverage-text --coverage-clover ../build/logs/clover.xml --coverage-html ../build/coverage/ && cd .."
}
}