-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 946 Bytes
/
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
{
"name": "cyberinferno/inferno-slim3-mvc",
"description": "Easy to use Slim3 MVC application boilerplate",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Karthik P",
"email": "karthikreadnovel@gmail.com",
"homepage": "http://www.coderkarthik.com/"
}
],
"require": {
"php": ">=5.6",
"monolog/monolog": "^1.17",
"slim/csrf": "^0.8.3",
"slim/php-view": "^2.0",
"slim/slim": "^3.1",
"vlucas/phpdotenv": "^2.5"
},
"autoload": {
"psr-4": {
"InfernoSlimMvc\\controllers\\": "controllers",
"InfernoSlimMvc\\models\\": "models"
}
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S localhost:8080"
}
}