forked from maintainable/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "smoke/maintainable-framework",
"type": "library",
"keywords": [
"framework",
"maintainable",
"smoke"
],
"homepage": "https://github.com/smoke/maintainable-framework",
"license": "Maintainable Software and contributors @see LICENSE.txt",
"require": {
"php": ">=5.1.4"
},
"suggest": {
"smoke/smoke": "Smoke`s libraries, tools and other for extending and supporting Zend Framework, Mad (maintainable-framework) and other tools I use."
},
"autoload": {
"psr-0": {
"Mad": "vendor/",
"Horde": "vendor/"
}
},
"include-path": ["vendor/"],
"bin": [
"script/console",
"script/createapp",
"script/dbconsole",
"script/generate",
"script/task"
],
"replace": {
"smoke/maintainable-framework-mad": "self.version",
"smoke/maintainable-framework-horde": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}