-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
51 lines (51 loc) · 1.05 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
{
"name": "slim/http-cache",
"type": "library",
"description": "Slim Framework HTTP cache middleware and service provider",
"keywords": [
"slim",
"framework",
"middleware",
"cache"
],
"homepage": "https://www.slimframework.com",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://joshlockhart.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13 || ^9.3.8",
"slim/psr7": "^1.1",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.3"
},
"autoload": {
"psr-4": {
"Slim\\HttpCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\HttpCache\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
],
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1",
"phpunit": "phpunit"
}
}