-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
45 lines (45 loc) · 1.26 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
{
"name": "zeuxisoo/php-slimork",
"description": "PHP Slim Framework skeleton application",
"keywords": ["framework", "microframework", "slim", "skeleton", "rest"],
"type": "project",
"homepage": "https://github.com/zeuxisoo/php-slimork",
"require": {
"php": "^7.1.20",
"slim/slim": "3.12.*",
"slim/twig-view": "2.5.*",
"slim/csrf": "0.8.*",
"slim/flash": "0.4.*",
"php-di/slim-bridge": "2.0.*",
"symfony/var-dumper": "4.2.*",
"monolog/monolog": "1.24.*",
"swiftmailer/swiftmailer": "6.2.*",
"respect/validation": "1.1.*",
"cache/session-handler": "1.0.*",
"illuminate/database": "5.8.*",
"illuminate/pagination": "5.8.*",
"illuminate/events": "5.8.*",
"robmorgan/phinx": "0.10.*",
"vlucas/phpdotenv": "3.3.*"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Slimork\\": "slimork/"
},
"files": [
"app/helpers.php",
"slimork/helpers.php"
]
},
"config": {
"preferred-install": "dist"
},
"license": "BSD-2-Clause",
"authors": [
{
"name": "Zeuxis Lo",
"email": "[email protected]"
}
]
}