-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.36 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.36 KB
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
59
60
61
62
63
{
"name": "softcreatr/php-mime-detector",
"description": "Modern, extensible MIME type detector for PHP",
"license": "ISC",
"keywords": [
"Mime",
"Mime Type",
"File Type",
"Magic Number",
"Detector",
"Extension Lookup"
],
"authors": [
{
"name": "Sascha Greuel",
"email": "hello@1-2.dev"
},
{
"name": "Sebastian Zimmer",
"email": "morik@softcreatr.de"
}
],
"homepage": "https://1-2.dev",
"support": {
"email": "hello@1-2.dev",
"issues": "https://github.com/SoftCreatR/php-mime-detector/issues",
"source": "https://github.com/SoftCreatR/php-mime-detector"
},
"require": {
"php": ">=8.1.0",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": ">=10.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"ext-zip": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SoftCreatR\\MimeDetector\\": "src/SoftCreatR/MimeDetector"
}
},
"autoload-dev": {
"psr-4": {
"SoftCreatR\\Tests\\MimeDetector\\": "tests/SoftCreatR/MimeDetector"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
}
}