-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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
{
"name": "werk365/etagconditionals",
"description": "Laravel package to enable support for ETags and handling If-Match and If-None-Match conditional requests",
"license": "MIT",
"authors": [
{
"name": "Hergen Dillema",
"email": "[email protected]",
"homepage": "https://365werk.nl"
}
],
"homepage": "https://github.com/werk365/etagconditionals",
"keywords": ["Laravel", "EtagConditionals"],
"require": {
"illuminate/support": "~7|~8|~9|~10"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0",
"orchestra/testbench": "~5|~6|~7|~8"
},
"autoload": {
"psr-4": {
"Werk365\\EtagConditionals\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Werk365\\EtagConditionals\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Werk365\\EtagConditionals\\EtagConditionalsServiceProvider"
],
"aliases": {
"EtagConditionals": "Werk365\\EtagConditionals\\Facades\\EtagConditionals"
}
}
}
}