summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 6275cb3d97f33b44a2174824871e4c5c17d8a08f (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
25
26
27
{
    "name": "symfony/requirements-checker",
    "description": "Check Symfony requirements and give recommendations",
    "keywords": ["distribution","configuration"],
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        }
    ],
    "require": {
        "php": ">=5.3.9"
    },
    "bin": [
        "bin/requirements-checker"
    ],
    "autoload": {
        "psr-4": { "Symfony\\Requirements\\": "src/" }
    },
    "extra": {
        "branch-alias": {
            "dev-main": "2.0.x-dev"
        }
    }
}