-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (42 loc) · 1.1 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
{
"name": "phpixie/project",
"type": "project",
"description" : "PHPixie skeleton project",
"license" : "BSD",
"autoload": {
"psr-4": {
"": [
"src/",
"tests/",
"bundles/app/src/",
"bundles/app/tests/"
]
}
},
"require": {
"phpixie/default-bundle": "3.*@dev",
"phpixie/bundle-framework": "3.*@dev",
"phpixie/bundles": "3.*@dev",
"phpixie/framework": "3.*@dev",
"phpixie/debug": "3.*@dev",
"phpixie/route": "3.*@dev",
"phpixie/template": "3.*@dev",
"phpixie/filesystem": "3.*@dev",
"phpixie/database": "3.*@dev",
"phpixie/config": "3.*@dev",
"phpixie/orm": "3.*@dev",
"phpixie/slice": "3.*@dev",
"phpixie/processors": "3.*@dev",
"phpixie/http": "3.*@dev",
"psr/http-message": "1.*@dev",
"phpixie/http-processors": "3.*@dev"
},
"require-dev": {
"phpixie/test": "3.*@dev"
},
"extra": {
"branch-alias": {
"dev-master": "3.*-dev"
}
}
}