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
| {
| "name": "league/mime-type-detection",
| "description": "Mime-type detection for Flysystem",
| "license": "MIT",
| "authors": [
| {
| "name": "Frank de Jonge",
| "email": "info@frankdejonge.nl"
| }
| ],
| "scripts": {
| "test": "vendor/bin/phpunit",
| "phpstan": "vendor/bin/phpstan analyse -l 6 src"
| },
| "require": {
| "php": "^7.4 || ^8.0",
| "ext-fileinfo": "*"
| },
| "require-dev": {
| "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0",
| "phpstan/phpstan": "^0.12.68",
| "friendsofphp/php-cs-fixer": "^3.2"
| },
| "autoload": {
| "psr-4": {
| "League\\MimeTypeDetection\\": "src"
| }
| },
| "config": {
| "platform": {
| "php": "7.4.0"
| }
| }
| }
|
|