-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
47 lines (47 loc) · 1.29 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
{
"name": "zhiephie/boilerplate-slim3",
"description": "Boilerplate for getting started with Slim Framework",
"keywords": ["Slim", "Eloquent", "Monolog", "Twig", "Framework"],
"homepage": "https://github.com/zhiephie/boilerplate-slim3",
"license": "MIT",
"authors": [
{
"name": "Yudi Purwanto",
"email": "[email protected]",
"homepage": "http://www.timexstudio.com"
}
],
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"scripts": {
"post-install-cmd": [
"composer dumpautoload -o"
],
"post-update-cmd": [
"composer dumpautoload -o"
]
},
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"slim/twig-view": "^2.0",
"cartalyst/sentinel": "^2.0",
"illuminate/database": "^5.2",
"illuminate/events": "^5.2",
"phpmailer/phpmailer": "6.1.6",
"symfony/http-foundation": "3.4.35",
"slim/csrf": "^0.6.0",
"slim/http-cache": "^0.3.0",
"slim/flash": "^0.1.0",
"siriusphp/validation": "1.2.*",
"facebook/graph-sdk": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
}
}