summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 19a62a70d5223e3aa41b7ee311371cc0c01bf548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "name": "league/mime-type-detection",
    "description": "Mime-type detection for Flysystem",
    "license": "MIT",
    "authors": [
        {
            "name": "Frank de Jonge",
            "email": "info@frankdejonge.nl"
        }
    ],
    "require": {
        "php": "^7.2 || ^8.0",
        "ext-fileinfo": "*"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.5.8",
        "phpstan/phpstan": "^0.12.36"
    },
    "autoload": {
        "psr-4": {
            "League\\MimeTypeDetection\\": "src"
        }
    }
}