-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
executable file
·62 lines (62 loc) · 1.55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "semhoun/slim-skeleton-mvc",
"description": "Simple Slim Framework 4 skeleton with Twig, Monolog, Doctrine in Sqlite.",
"license": "MIT",
"type": "project",
"keywords": [
"slim-framework",
"skeleton",
"mvc",
"sqlite",
"twig",
"monolog",
"doctrine",
"console",
"api"
],
"authors": [
{
"name": "Nathanael Semhoun",
"email": "nathanael@semhoun.net",
"homepage": "http://www.semhoun.net"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"php": "^8.0",
"ext-sqlite3": "*",
"ext-json": "*",
"slim/slim": "^4.14",
"slim/psr7": "^1.7",
"doctrine/orm": "^3",
"doctrine/dbal": "^4",
"doctrine/migrations": "^3",
"symfony/cache": "^7",
"php-di/slim-bridge": "^3.4",
"monolog/monolog": "^3.6",
"symfony/console": "^6.0",
"slim/twig-view": "^3.4",
"akrabat/proxy-detection-middleware": "^1.0"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.11",
"rector/rector": "^1.1",
"semhoun/slim-tracy": "^1.0"
},
"scripts": {
"start": "php -S localhost:8080 -t public public/index.php",
"rector-check": "rector process --dry-run",
"rector-fix": "rector process",
"insights-check": "phpinsights --config-path=./phpinsights.php",
"insights-fix": "phpinsights --config-path=./phpinsights.php -- fix"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}