This repository has been archived by the owner on Jul 10, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
composer.json
60 lines (59 loc) · 2.03 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
{
"name": "neilime/zf2-twb-bundle",
"type": "library",
"description": "Zend Framework 2 module for easy integration of Twitter Bootstrap",
"keywords": ["Zend Framework 2","Twitter Bootstrap","module"],
"homepage": "http://neilime.github.io/zf2-twb-bundle/",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Neilime",
"homepage": "https://github.com/neilime",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/neilime/zf2-twb-bundle/issues"
},
"suggest": {
"neilime/zf2-assets-bundle": "Bundling & caching Twitter Bootstrap assets",
"twitter/bootstrap": "Twitter bootstrap assets"
},
"require": {
"php": ">=5.3.2",
"zendframework/zend-config": "^2.3 || ^3.0",
"zendframework/zend-escaper": "^2.3",
"zendframework/zend-form": "^2.3",
"zendframework/zend-i18n": "^2.3",
"zendframework/zend-loader": "^2.3",
"zendframework/zend-log": "^2.3",
"zendframework/zend-modulemanager": "^2.3",
"zendframework/zend-mvc": "^2.3 || ^3.0",
"zendframework/zend-serializer": "^2.3",
"zendframework/zend-servicemanager": "^2.3 || ^3.1",
"zendframework/zend-stdlib": "^2.3 || ^3.1",
"zendframework/zend-view": "^2.3",
"zendframework/zend-navigation": "^2.9"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-4": {
"TwbBundle\\": "src/TwbBundle"
}
},
"scripts": {
"test": "cd tests && phpunit --colors & cd ..",
"test:ci": "cd tests && phpunit -d max_execution_time=0 --coverage-text --coverage-clover ../build/logs/clover.xml --coverage-html ../build/coverage/ && cd .."
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"config-provider": "TwbBundle\\ConfigProvider"
}
}
}