-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·42 lines (42 loc) · 1.13 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
{
"name": "simplemvc/skeleton",
"type": "project",
"description": "A skeleton application using SimpleMVC framework",
"keywords": [
"framework",
"simple",
"mvc",
"psr-7",
"skeleton"
],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"php-di/php-di": "^6.0",
"league/plates": "^3.4",
"simplemvc/framework": "^0.3",
"monolog/monolog": "^2.8"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"App\\Config\\": "config/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --colors=always --coverage-clover clover.xml",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"start": ["Composer\\Config::disableProcessTimeout", "php -S 0.0.0.0:8080 -t public"],
"clean": ["rm data/cache/route.cache"]
}
}