-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.09 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.09 KB
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
60
61
62
63
64
65
66
67
68
{
"name": "webriqcms/core",
"type": "webriqcms-modules",
"description": "Core modules for WebriQ CMS",
"license": "BSD-3-Clause",
"keywords": [
"webriqcms",
"module",
"core"
],
"homepage": "http://webriq.com/",
"authors": [
{
"name": "WebriQ Dev Team",
"email": "info@webriq.com",
"homepage": "http://webriq.com/",
"role": "Developer team"
}
],
"support": {
"email": "info@webriq.com",
"source": "https://github.com/webriq/core"
},
"require": {
"php": ">=5.4",
"ext-pdo_pgsql": "*",
"codeplex/phpexcel": "1.*",
"dflydev/markdown": "1.*",
"webriqcms/zork": "*",
"webriqcms/module-installer": "*"
},
"autoload": {
"psr-0": {
"Grid\\Core": "module/Core/src/",
"Grid\\Customize": "module/Customize/src/",
"Grid\\Image": "module/Image/src/",
"Grid\\Mail": "module/Mail/src/",
"Grid\\Menu": "module/Menu/src/",
"Grid\\Paragraph": "module/Paragraph/src/",
"Grid\\Tag": "module/Tag/src/",
"Grid\\User": "module/User/src/"
},
"classmap": [
"module/Core/Module.php",
"module/Customize/Module.php",
"module/Image/Module.php",
"module/Mail/Module.php",
"module/Menu/Module.php",
"module/Paragraph/Module.php",
"module/Tag/Module.php",
"module/User/Module.php"
]
},
"extra": {
"display-icon": {
"63": "https://raw.githubusercontent.com/webriq/core/master/icons/63x63.png"
},
"display-name": {
"en": "Core"
},
"display-description": {
"en": "This APP contains central and indispensable functions that set the stage for you to unleash your creativity.\n\nAlways installed and configured!"
},
"patch-classes": {
"Grid\\Core\\Installer\\Patch": "module/Core/src/Grid/Core/Installer/Patch.php"
}
}
}