-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
45 lines (45 loc) · 1.16 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
42
43
44
45
{
"name": "bitworking/mimeparse",
"description": "Basic functions for handling mime-types.",
"type": "library",
"keywords": ["http", "accept", "mime"],
"homepage": "https://github.com/conneg/mimeparse-php",
"license": "MIT",
"authors": [
{
"name": "Joe Gregorio",
"homepage": "http://bitworking.org"
},
{
"name": "Andrew \"Venom\" K."
},
{
"name": "Ben Ramsey",
"email": "[email protected]",
"homepage": "http://benramsey.com"
}
],
"support": {
"issues": "https://github.com/conneg/mimeparse-php/issues",
"source": "https://github.com/conneg/mimeparse-php"
},
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"phpunit/phpunit": "^4.7|^5.0",
"squizlabs/php_codesniffer": "^2.3",
"jakub-onderka/php-parallel-lint": "^0.9.0",
"satooshi/php-coveralls": "^0.6.1"
},
"autoload": {
"psr-4": {
"Bitworking\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bitworking\\Test\\": "tests/src/"
}
}
}