-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (51 loc) · 1.49 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
{
"name": "webforge/webforge",
"description": "a content management framework for easy to build and individual content management systems",
"keywords": ["cmf", "framework", "cms"],
"homepage": "http://github.com/pscheit/webforge",
"license": "MIT",
"authors": [
{"name": "Philipp Scheit", "email": "[email protected]"}
],
"bin": ["bin/webforge"],
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*",
"nikic/php-parser": "0.9.*@stable",
"webforge/common": "~1.9.0@stable",
"webforge/types": "~1.2.0@stable",
"webforge/console": "1.2.*",
"webforge/config": "1.0.*@stable",
"sebastian/diff": "1.1.*@stable",
"liip/rmt": "0.9.*@stable"
},
"require-dev": {
"webforge/testdata-repository": "*@alpha",
"mikey179/vfsstream": "1.3.*@dev",
"mockery/mockery": "~0.9@stable",
"webforge/testplate": "~1.6.0@stable",
"symfony/event-dispatcher": "2.3@stable"
},
"suggest": {
"webforge/doctrine": "To persist the navigation tree generated from NestedSetConverter",
"webforge/configuration-tester": "To test your php configuration"
},
"autoload": {
"psr-0": {
"Webforge": ["lib/", "tests/"]
}
},
"extra": {
"branch-alias": {
"dev-master": "1.11.x-dev"
},
"directory-locations": {
"lib": "lib/",
"tpl": "resources/tpl/",
"resources": "resources",
"prototypes": "resources/prototypes/",
"assets-src": "resources/assets/"
}
}
}