-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 loc) · 991 Bytes
/
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
{
"name": "mobicms/mobicms-classic",
"description": "Mobile Content Management System",
"type": "project",
"homepage": "https://mobicms.org",
"license": "GPL-3.0",
"keywords": [
"mobicms",
"cms",
"mobile"
],
"authors": [
{
"name": "mobiCMS Community",
"homepage": "https://mobicms.org/about/"
}
],
"config": {
"sort-packages": true,
"vendor-dir": "system/vendor"
},
"require": {
"php": "^5.6 || ^7.0",
"roave/security-advisories": "dev-master",
"klein/klein": "^2.1",
"mobicms/mobicms-captcha": "^1.0",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-i18n": "^2.7",
"verot/class.upload.php": "dev-master",
"geshi/geshi": "dev-master",
"erusev/parsedown": "^1.6"
},
"autoload": {
"psr-4": {
"Mobicms\\": "system/mobicms/",
"Mobicms\\Api\\": "system/api/",
"Library\\": "modules/library/classes/"
}
}
}