summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Bridge/PhpUnit/composer.json
blob: 4d72603eb452f9774f9f85e69953fafa9e109f0c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
    "name": "symfony/phpunit-bridge",
    "type": "symfony-bridge",
    "description": "Symfony PHPUnit Bridge",
    "keywords": [],
    "homepage": "https://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Nicolas Grekas",
            "email": "p@tchwork.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "https://symfony.com/contributors"
        }
    ],
    "require": {
        "php": ">=5.3.3 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
        "php": "THIS BRIDGE WHEN TESTING LOWEST SYMFONY VERSIONS.",
        "php": ">=5.3.3"
    },
    "suggest": {
        "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader",
        "ext-zip": "Zip support is required when using bin/simple-phpunit"
    },
    "conflict": {
        "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
    },
    "autoload": {
        "files": [ "bootstrap.php" ],
        "psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "bin": [
        "bin/simple-phpunit"
    ],
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "4.2-dev"
        },
        "thanks": {
            "name": "phpunit/phpunit",
            "url": "https://github.com/sebastianbergmann/phpunit"
        }
    }
}