-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
29 lines (29 loc) · 904 Bytes
/
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
{
"name": "matthewbdaly/laravel-etag-middleware",
"description": "A Laravel middleware for adding ETags to HTTP requests to improve response times",
"keywords": ["laravel", "etags", "etag", "middleware", "http"],
"type": "library",
"require": {
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/http": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.2|^9.0",
"mockery/mockery": "^1.0",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.8"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Daly",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Matthewbdaly\\ETagMiddleware\\": "src/"
}
}
}