summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Bridge/Twig/composer.json
blob: 071b25b18e419c4d15d01741188b9b4f13ea68b8 (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
63
64
65
66
67
68
69
70
71
72
73
74
{
    "name": "symfony/twig-bridge",
    "type": "symfony-bridge",
    "description": "Symfony Twig 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.5.9|>=7.0.8",
        "twig/twig": "^1.40|^2.9"
    },
    "require-dev": {
        "symfony/asset": "~2.8|~3.0|~4.0",
        "symfony/dependency-injection": "~2.8|~3.0|~4.0",
        "symfony/finder": "~2.8|~3.0|~4.0",
        "symfony/form": "^3.4.23|^4.2.4",
        "symfony/http-foundation": "^3.3.11|~4.0",
        "symfony/http-kernel": "~3.2|~4.0",
        "symfony/polyfill-intl-icu": "~1.0",
        "symfony/routing": "~2.8|~3.0|~4.0",
        "symfony/templating": "~2.8|~3.0|~4.0",
        "symfony/translation": "~2.8|~3.0|~4.0",
        "symfony/yaml": "~2.8|~3.0|~4.0",
        "symfony/security": "^2.8.31|^3.3.13|~4.0",
        "symfony/security-acl": "~2.8|~3.0",
        "symfony/stopwatch": "~2.8|~3.0|~4.0",
        "symfony/console": "~3.4|~4.0",
        "symfony/var-dumper": "~2.8.10|~3.1.4|~3.2|~4.0",
        "symfony/expression-language": "~2.8|~3.0|~4.0",
        "symfony/web-link": "~3.3|~4.0",
        "symfony/workflow": "~3.3|~4.0"
    },
    "conflict": {
        "symfony/form": "<3.4.13|>=4.0,<4.0.13|>=4.1,<4.1.2",
        "symfony/console": "<3.4"
    },
    "suggest": {
        "symfony/finder": "",
        "symfony/asset": "For using the AssetExtension",
        "symfony/form": "For using the FormExtension",
        "symfony/http-kernel": "For using the HttpKernelExtension",
        "symfony/routing": "For using the RoutingExtension",
        "symfony/templating": "For using the TwigEngine",
        "symfony/translation": "For using the TranslationExtension",
        "symfony/yaml": "For using the YamlExtension",
        "symfony/security": "For using the SecurityExtension",
        "symfony/stopwatch": "For using the StopwatchExtension",
        "symfony/var-dumper": "For using the DumpExtension",
        "symfony/expression-language": "For using the ExpressionExtension",
        "symfony/web-link": "For using the WebLinkExtension"
    },
    "autoload": {
        "psr-4": { "Symfony\\Bridge\\Twig\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "3.4-dev"
        }
    }
}