forked from odan/slim4-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 913 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 913 Bytes
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
{
"name": "odan/slim4-tutorial",
"type": "project",
"description": "A Slim 4 skeleton",
"keywords": [
"slim-framework"
],
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"php-di/php-di": "^6.3",
"selective/basepath": "^2",
"slim/psr7": "^1.2",
"slim/slim": "^4.6"
},
"require-dev": {
"phpunit/phpunit": "^8.4 || ^9"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --configuration phpunit.xml",
"test:coverage": "phpunit --configuration phpunit.xml --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
}
}