forked from ralouphie/mimey
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 999 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
40
41
42
43
44
45
{
"name": "elephox/mimey",
"description": "PHP package for converting file extensions to MIME types and vice versa.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ralph Khattar",
"email": "ralph.khattar@gmail.com"
},
{
"name": "Ricardo Boss",
"email": "contact@ricardoboss.de"
}
],
"require": {
"php": "^8.1 <8.5",
"jetbrains/phpstorm-attributes": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"suggest": {
"ext-mbstring": "For non-English (user) input parsing"
},
"autoload": {
"psr-4": {
"Elephox\\Mimey\\": ["src/", "dist/"]
}
},
"autoload-dev": {
"psr-4": {
"Elephox\\Mimey\\Tests\\": "tests/src/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-cobertura=coverage.xml"
],
"generate-types": "@php bin/generate.php",
"update-types": "@php bin/update.php"
}
}