diff options
| author | Remi Collet <remi@remirepo.net> | 2019-04-18 08:00:42 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2019-04-18 08:00:42 +0200 | 
| commit | 8384b6df2906c91bc2585559b7d3394d393c3acf (patch) | |
| tree | 5644d030395e63f2a0663c9507f003b2d703a801 /src/Symfony/Bridge/Twig | |
| parent | bfe1ed3b3a0aedf43d8660d49f3c9db41d4146a7 (diff) | |
v4.1.12
Diffstat (limited to 'src/Symfony/Bridge/Twig')
| -rw-r--r-- | src/Symfony/Bridge/Twig/composer.json | 74 | 
1 files changed, 74 insertions, 0 deletions
diff --git a/src/Symfony/Bridge/Twig/composer.json b/src/Symfony/Bridge/Twig/composer.json new file mode 100644 index 0000000..26dfc9c --- /dev/null +++ b/src/Symfony/Bridge/Twig/composer.json @@ -0,0 +1,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": "^7.1.3", +        "twig/twig": "^1.37.1|^2.6.2" +    }, +    "require-dev": { +        "symfony/asset": "~3.4|~4.0", +        "symfony/dependency-injection": "~3.4|~4.0", +        "symfony/finder": "~3.4|~4.0", +        "symfony/form": "~4.1.11|^4.2.3", +        "symfony/http-foundation": "~3.4|~4.0", +        "symfony/http-kernel": "~3.4|~4.0", +        "symfony/polyfill-intl-icu": "~1.0", +        "symfony/routing": "~3.4|~4.0", +        "symfony/templating": "~3.4|~4.0", +        "symfony/translation": "~3.4|~4.0", +        "symfony/yaml": "~3.4|~4.0", +        "symfony/security": "~3.4|~4.0", +        "symfony/security-acl": "~2.8|~3.0", +        "symfony/stopwatch": "~3.4|~4.0", +        "symfony/console": "~3.4|~4.0", +        "symfony/var-dumper": "~3.4|~4.0", +        "symfony/expression-language": "~3.4|~4.0", +        "symfony/web-link": "~3.4|~4.0", +        "symfony/workflow": "~3.4|~4.0" +    }, +    "conflict": { +        "symfony/form": "<4.1.11|<4.2.3,>=4.2.0", +        "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": "4.1-dev" +        } +    } +}  | 
