-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
62 lines (56 loc) · 2.36 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
60
61
62
{
"name": "libra/libra-cms",
"type": "project",
"description": "ZF2 based CMS that allows easily create your own web-site with necessary tools like article menagment",
"keywords": ["zf", "zf2", "zend framework", "cms"],
"homepage": "http://www.ejoom.com/libra-cms/",
"license": "BSD-3-Clause",
"authors": [
{"name": "duke", "email": "[email protected]", "role": "maintainer, developer", "homepage": "https://www.facebook.com/vnagara"}
],
"support": {
"email": "[email protected]",
"irc": "irc://irc.freenode.net/libracms"
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"doctrine/doctrine-module": "^0.8",
"doctrine/doctrine-orm-module": "^0.8",
"zf-commons/zfc-user-doctrine-orm": "0.1.3",
"zf-commons/zfc-twig": "1.*",
"libra/libra-app": "^0.7",
"libra/libra-article": "^0.6",
"libra/ckeditor-assets": "3.*",
"libra/ckfinder-assets": "2.*",
"libra/jquery-ui-assets": "^1.10",
"libra/datatables-assets": "^1.9",
"libra/fancybox-assets": "2.*",
"libra/libra-article-image-zooming":"0.*",
"libra/libra-locale": "^0.5",
"monolog/monolog": "^1.5",
"vnagara/runtime-config": "1.*",
"zendframework/zend-developer-tools": "0.*",
"leafo/scssphp": "^0.1.9",
"twbs/bootstrap-sass": "^3.3.0",
"libra/jquery-assets": "2.*"
},
"autoload": {
"psr-0": {
"Application\\": "module/Application/src/",
"LibraCmsTest": "tests/LibraCmsTest"
},
"classmap": ["module/Application/Module.php"]
},
"suggest": {
"libra/jquery-ui-assets": "Add jQuery User Interface library that will be installed in public dir"
},
"scripts": {
"post-package-install": "LibraAssetsInstaller\\Installer::postPackageInstall",
"pre-package-uninstall": "LibraAssetsInstaller\\Installer::prePackageUninstall",
"post-package-update": "LibraAssetsInstaller\\Installer::postPackageUpdate"
}
}