forked from willdurand/Negotiation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 800 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
{
"name": "willdurand/negotiation",
"description": "Content Negotiation tools for PHP provided as a standalone library.",
"keywords": [ "content", "negotiation", "format", "accept", "header" ],
"license": "MIT",
"homepage": "http://williamdurand.fr/Negotiation/",
"authors": [
{
"name": "William Durand",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": { "Negotiation\\": "src/Negotiation" }
},
"autoload-dev": {
"psr-4": { "Negotiation\\Tests\\": "tests/Negotiation/Tests" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0"
}
}