-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.09 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "slim/flash",
"type": "library",
"description": "Slim Framework Flash message service provider",
"keywords": ["slim","framework","provider","flash","message"],
"homepage": "http://slimframework.com",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://joshlockhart.com"
}
],
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Slim\\Flash\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\Flash\\Tests\\": "tests"
}
},
"scripts": {
"check": [
"@test:coverage"
],
"test": "phpunit --do-not-cache-result --colors=always",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --do-not-cache-result --colors=always --coverage-clover build/coverage/clover.xml --coverage-html build/coverage --coverage-text"
]
}
}