forked from iherwig/wcmf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.87 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
{
"name": "wcmf/wcmf",
"type": "library",
"description": "The wCMF web application framework",
"keywords": ["framework", "mvc", "model-driven", "wcmf"],
"homepage": "https://wcmf.wemove.com",
"license": "MIT",
"authors": [
{
"name": "Ingo Herwig",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "olympos/chronos-generator",
"version": "1.0.24",
"dist": {
"url": "https://downloads.sourceforge.net/project/olympos/ChronosGenerator-wCMF/ChronosGenerator-wCMF-1.0.24.zip",
"type": "zip"
}
}
}
],
"require": {
"php": ">=5.6.0",
"olympos/chronos-generator": "1.0.*",
"monolog/monolog": "~1.22",
"zendframework/zend-db": "2.*",
"zendframework/zendsearch": "^2.0@rc",
"zendframework/zend-eventmanager": "^3.2",
"codecasts/nusoap-php7": "~0.9",
"lcobucci/jwt": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"phpunit/dbunit": "~1.4",
"codacy/coverage": "~1.4"
},
"suggest": {
"smarty/smarty": "Use this package to render Smarty views via SmartyView",
"nao-pon/elfinder-nightly": "Use this package to integrate elFinder with MediaController",
"eventviva/php-image-resize": "Use this package to resize images using Smarty plugins",
"setasign/fpdi-fpdf": "Use this package to generate PDF files",
"zf1/zend-http": "Use this package, if you want to communicate to other wCMF instances over HTTP",
"facebook/webdriver": "Use this package, if you want to run tests with SeleniumTestCase"
},
"autoload": {
"psr-4": {
"wcmf\\": "src/wcmf/"
}
}
}