-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (57 loc) · 1.56 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
{
"name": "pscheit/psc-cms",
"type": "library",
"description": "a content management system ontop of webforge.",
"keywords": ["cms", "framework"],
"homepage": "http://wiki.ps-webforge.com/psc-cms:start",
"license": "LGPL-3.0",
"authors": [
{"name": "Philipp Scheit", "email": "p.scheit@ps-webforge.com"}
],
"autoload": {
"psr-0": {
"Psc": ["lib/", "tests/"],
"Hitch": ["application/src/hitch/lib/"],
"PHPWord": ["lib/PHPWord/"]
},
"files": [
"lib/JParser/autoload.php"
]
},
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*",
"ext-curl": "*",
"symfony/http-foundation": "2.5.*@stable",
"swiftmailer/swiftmailer": "4.1.*@stable",
"codeplex/phpexcel": "1.7.8@stable",
"webforge/webforge": "1.10.*@dev",
"webforge/doctrine": "1.2.*@dev",
"webforge/translation": ">=1.0.3@stable",
"webforge/fatal-error-handler": "1.*@stable",
"webforge/dom": "1.*@dev"
},
"require-dev": {
"webforge/testdata-repository": "@alpha",
"doctrine/data-fixtures": "1.0.*@alpha",
"pscheit/psc-cms-image": "1.2.*",
"webforge/testplate": "1.*",
"liip/rmt": "0.9.*",
"mockery/mockery": "0.9.*",
"seld/jsonlint": "1.1.*"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.10.x-dev"
},
"directory-locations": {
"lib": "lib/",
"tpl": "resources/tpl/",
"cms-tpl": "resources/tpl/",
"resources": "resources",
"prototypes": "resources/prototypes/",
"assets-src": "resources/assets/"
}
}
}