-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.11 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
{
"name": "gaboogled/slim3mvc",
"description": "A MVC Skeleton Application for the Slim 3 PHP micro-Framework.",
"keywords": ["slim", "mvc" ,"skeleton", "application" ,"plates" ,"template"],
"license": "MIT",
"homepage": "https://github.com/gaboogled/slim3mvc",
"authors": [
{
"name": "George Freeney-Jones",
"email": "gaboogled@gmail.com",
"homepage": "https://gaboogled.github.io/space"
}
],
"require": {
"php": ">=7.1",
"slim/slim": "^3.1",
"middlewares/https": "^1.3",
"bryanjhv/slim-session": "~3.0",
"martynbiz/slim3-controller": "^0",
"shameerc/slim3-aura-di": "^1.0",
"illuminate/database": "^5.8",
"dopesong/slim-whoops": "^2",
"slim/php-view": "^2.2",
"monolog/monolog": "^1.17",
},
"require-dev": {
"pavlakis/slim-behat-extension": "^1.0",
"phpunit/phpunit": ">=4.8 < 6.0"
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}