-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.99 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": "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.25",
"dist": {
"url": "https://downloads.sourceforge.net/project/olympos/ChronosGenerator-wCMF/ChronosGenerator-wCMF-1.0.25.zip",
"type": "zip"
}
}
}
],
"require": {
"php": "^8.1",
"olympos/chronos-generator": "1.0.*",
"monolog/monolog": "~1.27",
"laminas/laminas-db": "^2.17.0",
"handcraftedinthealps/zendsearch": "^2.1",
"laminas/laminas-eventmanager": "^3.10",
"econea/nusoap": "~0.9.13",
"lcobucci/jwt": "~5.0",
"symfony/cache": "~6.2"
},
"require-dev": {
"phpunit/phpunit": "~9",
"misantron/dbunit": "~5",
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-db": "^3.1",
"codeception/module-asserts": "^3.0"
},
"suggest": {
"smarty/smarty": "Use this package to render Smarty views via SmartyView",
"nao-pon/elfinder-nightly": "Use this package to integrate elFinder with MediaController",
"intervention/image": "Use this package to resize images using Smarty plugins",
"setasign/fpdi": "Use this package to generate PDF files",
"setasign/tfpdf": "Use this package to generate PDF files",
"php-webdriver/webdriver": "Use this package, if you want to run tests with SeleniumTestCase"
},
"autoload": {
"psr-4": {
"wcmf\\": "src/wcmf/"
}
}
}