-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.09 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
{
"require": {
"slim/slim": "^3.0",
"monolog/monolog": "^1.23",
"slim/php-view": "^2.2",
"slim/pdo": "~1.10",
"slim/twig-view": "^2.3",
"tuupola/cors-middleware": "^0.5.2",
"chadicus/slim-oauth2-middleware": "^3.2",
"phpmailer/phpmailer": "^6.0",
"pavlakis/slim-cli": "^1.0",
"vlucas/phpdotenv": "^2.4",
"guzzlehttp/guzzle": "^6.3",
"spiral/roadrunner": "^1.4",
"resque/php-resque": "^1.3",
"symfony/console": "^4.3",
"predis/predis": "^1.1"
},
"autoload": {
"psr-4": {
"Core\\": "Core/",
"Services\\": "Services/",
"Controller\\": "Controller",
"Command\\": "Command",
"Configs\\": "Configs",
"Model\\": "Model",
"Jobs\\": "Jobs",
"Helpers\\": "Helpers"
},
"classmap": [
"Middlewares/"
],
"files": [
"./Core/until.php"
]
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload -o"
],
"post-update-cmd": [
"composer dump-autoload -o"
],
"cs-fix": "php-cs-fixer fix $1"
},
"config": {
"preferred-install": "dist"
}
}