-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 930 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
38
39
40
{
"name": "m92o/slim-mvc-skeleton",
"description": "A Slim Framework MVC skeleton application for rapid development",
"keywords": ["microframework", "rest", "router", "psr7"],
"homepage": "https://github.com/m92o/slim-mvc-skeleton",
"license": "MIT",
"authors": [
{
"name": "Kunio Murasawa",
"email": "kunio.murasawa@gmail.com",
"homepage": "https://utbrew.com/"
}
],
"require": {
"php": ">=7.1",
"slim/slim": "^3.11",
"slim/php-view": "^2.2",
"monolog/monolog": "^1.24",
"illuminate/database": "^5.7"
},
"require-dev": {
"phpunit/phpunit": ">=5.0"
},
"autoload": {
"psr-4": {
"Controllers\\": "app/controllers",
"Models\\": "app/models",
"Libs\\": "app/libs"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}