forked from neilime/zf2-twb-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.47 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": "neilime/zf2-twb-bundle",
"type": "library",
"description": "Zend Framework 2 module for easy integration of Twitter Bootstrap",
"keywords": ["Zend Framework 2","Twitter Bootstrap","bundle"],
"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"
},
"repositories":[
{
"type": "package",
"package": {
"version": "dev-master",
"name": "twitter/bootstrap",
"source": {"url": "https://github.com/twitter/bootstrap.git","type": "git","reference": "master"}
}
}
],
"suggest": {
"neilime/zf2-assets-bundle": "Bundling & caching Twitter Bootstrap assets",
"twitter/bootstrap": "Twitter bootstrap assets"
},
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*@stable"
},
"require-dev": {
"phpunit/phpunit": "3.*@stable",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": {
"TwbBundle": "src"
},
"classmap" : ["Module.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}