-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
41 lines (41 loc) · 871 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
41
{
"name": "adriansuter/slim4-skeleton",
"description": "Web application skeleton that uses the Slim4 Framework, PHP-DI, Nyholm PSR7 and Twig.",
"license": "MIT",
"authors": [
{
"name": "Adrian Suter-Wirz",
"email": "adrian@suter-wirz.ch"
}
],
"autoload": {
"psr-4": {
"App\\": "application/App/"
}
},
"require": {
"php": "^7.2",
"slim/slim": "^4.1",
"slim/twig-view": "^3.1",
"nyholm/psr7": "^1.2",
"nyholm/psr7-server": "^1.0",
"php-di/php-di": "^6",
"monolog/monolog": "^2.0"
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpspec/prophecy": "^1.8"
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": [
"@phpunit"
],
"phpunit": "php vendor/bin/phpunit"
}
}