-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
58 lines (58 loc) · 1.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "softcreatr/php-mime-detector",
"description": "Mime Detector Decoder",
"keywords": [
"Mime",
"Mime Type",
"File Type",
"Magic Number"
],
"homepage": "https://1-2.dev",
"version": "4.0.0",
"license": "ISC",
"authors": [
{
"name": "Sascha Greuel",
"email": "hello@1-2.dev"
},
{
"name": "Sebastian Zimmer",
"email": "morik@softcreatr.de"
}
],
"require": {
"php": ">=8.1.0"
},
"require-dev": {
"phpunit/phpunit": ">=10.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"SoftCreatR\\MimeDetector\\": "src/SoftCreatR/MimeDetector"
}
},
"autoload-dev": {
"psr-4": {
"SoftCreatR\\Tests\\MimeDetector\\": "tests/SoftCreatR/MimeDetector"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
},
"support": {
"email": "hello@1-2.dev",
"issues": "https://github.com/SoftCreatR/php-mime-detector/issues",
"source": "https://github.com/SoftCreatR/php-mime-detector"
}
}