summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Bridge/Doctrine/composer.json
blob: e5b5a39a38269ae7e6552de81872e54fad000cdb (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
51
52
53
54
55
56
57
58
59
60
61
62
{
    "name": "symfony/doctrine-bridge",
    "type": "symfony-bridge",
    "description": "Symfony Doctrine Bridge",
    "keywords": [],
    "homepage": "https://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "https://symfony.com/contributors"
        }
    ],
    "require": {
        "php": ">=5.3.9",
        "doctrine/common": "~2.4",
        "symfony/polyfill-ctype": "~1.8",
        "symfony/polyfill-mbstring": "~1.0"
    },
    "require-dev": {
        "symfony/stopwatch": "~2.2|~3.0.0",
        "symfony/dependency-injection": "~2.2|~3.0.0",
        "symfony/form": "^2.8.28|~3.3.10",
        "symfony/http-kernel": "~2.2|~3.0.0",
        "symfony/property-access": "~2.3|~3.0.0",
        "symfony/property-info": "~2.8|3.0",
        "symfony/security": "^2.8.31|^3.3.13",
        "symfony/expression-language": "~2.2|~3.0.0",
        "symfony/validator": "~2.7.25|^2.8.18|~3.2.5",
        "symfony/translation": "^2.0.5|~3.0.0",
        "doctrine/data-fixtures": "1.0.*",
        "doctrine/dbal": "~2.4",
        "doctrine/orm": "^2.4.5"
    },
    "conflict": {
        "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
    },
    "suggest": {
        "symfony/form": "",
        "symfony/validator": "",
        "symfony/property-info": "",
        "doctrine/data-fixtures": "",
        "doctrine/dbal": "",
        "doctrine/orm": ""
    },
    "autoload": {
        "psr-4": { "Symfony\\Bridge\\Doctrine\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "2.8-dev"
        }
    }
}