-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.71 KB
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
63
64
65
66
67
68
{
"name": "sushilk/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": [
"slim",
"rest",
"psr7",
"router",
"microframework"
],
"type": "project",
"require": {
"php": "^8.3",
"slim/slim": "^4.15.2",
"slim/psr7": "^1.8",
"php-di/php-di": "^7.1.1",
"ext-json": "*",
"monolog/monolog": "^3.10",
"vlucas/phpdotenv": "^5.6.3",
"slim/twig-view": "^3.4.1"
},
"require-dev": {
"phpunit/phpunit": "^13.1.11",
"laravel/pint": "^1.29.1",
"symfony/var-dumper": "^8.0.8",
"phpstan/phpstan": "^2.1.55",
"phpstan/extension-installer": "^1.4.3",
"tomasvotruba/type-coverage": "^2.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Slim\\App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sushil Kumar",
"email": "[email protected]"
}
],
"config": {
"process-timeout": 0,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"serve": "@php -S localhost:5000 -t public",
"lint": "pint --parallel",
"test:lint": "pint --parallel --test",
"test:types": "phpstan",
"test:unit": "phpunit",
"coverage": "phpunit --coverage-text --coverage-clover coverage.xml",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}