-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.14 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "ejetar/accept-header-interpreter",
"description": "Accept Header toolbox \uD83E\uDDF0 to Laravel. Validation and interpretation based on RFC 7231, section 5.3.1 and 5.3.2. Conversion of the list of media types to ordered Laravel Collections (by priority, according to RFC).",
"homepage": "https://ejetar.com/projects/accept-header-interpreter",
"version": "1.1.0-alpha",
"readme": "README.md",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Guilherme Almeida Girardi",
"email": "guilhermeagirardi@gmail.com",
"homepage": "https://guilhermegirardi.com",
"role": "Developer"
}
],
"keywords": [
"php",
"accept header",
"laravel"
],
"require": {
"php": ">=7.2.5",
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0|~7.0"
},
"require-dev": {
"symfony/var-dumper": "^5.0@dev",
"phpunit/phpunit": "^9.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Ejetar\\AcceptHeaderInterpreter\\": "src/"
}
}
}