forked from auraphp/Aura.Accept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 945 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
30
31
32
33
34
35
36
37
38
39
{
"name": "aura/accept",
"type": "library",
"description": "Provides content-negotiation tools using Accept* headers.",
"keywords": [
"accept",
"content negotiation",
"content type",
"media type",
"accept-charset",
"accept-encoding",
"accept-language"
],
"homepage": "https://github.com/auraphp/Aura.Accept",
"license": "MIT",
"authors": [
{
"name": "Aura.Accept Contributors",
"homepage": "https://github.com/auraphp/Aura.Accept/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0"
},
"autoload": {
"psr-4": {
"Aura\\Accept\\": "src/"
}
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Aura\\Accept\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
}
}