forked from andrey900/SlimCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.31 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
{
"name": "andrey900/slimcms",
"description": "CMS based on Slim Framework 3",
"version": "0.0.8-alpha",
"license": "MIT",
"type": "project",
"keywords": ["slim-framework", "slim 3", "cms", "blog", "bootstrap cms", "bootstrap"],
"authors": [
{
"name": "Andrey Leo",
"email": "[email protected]",
"role": "Lead developer"
}
],
"autoload": {
"psr-4": {
"App\\": "app",
"Modules\\": "modules",
"SlimCMS\\": "src"
}
},
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.4",
"slim/twig-view": "^2.0",
"slim/flash": "^0.1.0",
"monolog/monolog": "^1.13",
"wazaari/monolog-mysql": ">1.0.0",
"slim/http-cache": "^0.3.0",
"slim/csrf": "^0.6.0",
"hybridauth/hybridauth": "^2.3.0",
"illuminate/database": "^5.2",
"illuminate/pagination": "^5.2",
"illuminate/cache": "^5.2",
"illuminate/container": "^5.2",
"illuminate/filesystem": "^5.2",
"symfony/event-dispatcher": "^3.0",
"phpmailer/phpmailer": "^5.2",
"hassankhan/config": "^0.10.0",
"symfony/debug": "^3.0",
"symfony/var-dumper": "^3.0",
"twig/extensions":"^1.5.4"
},
"require-dev": {
}
}