pinned twig

This commit is contained in:
tracer 2021-05-30 19:01:11 +02:00
parent a4c49f1347
commit cc470de716
4 changed files with 90 additions and 3 deletions

View File

@ -19,12 +19,14 @@
"symfony/framework-bundle": "5.2.*", "symfony/framework-bundle": "5.2.*",
"symfony/proxy-manager-bridge": "5.2.*", "symfony/proxy-manager-bridge": "5.2.*",
"symfony/security-bundle": "5.2.*", "symfony/security-bundle": "5.2.*",
"symfony/yaml": "5.2.*" "symfony/twig-bundle": "^5.2",
"symfony/yaml": "5.2.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
}, },
"require-dev": { "require-dev": {
"symfony/maker-bundle": "^1.31", "symfony/maker-bundle": "^1.31",
"symfony/stopwatch": "^5.2", "symfony/stopwatch": "^5.2",
"symfony/twig-bundle": "^5.2",
"symfony/web-profiler-bundle": "^5.2" "symfony/web-profiler-bundle": "^5.2"
}, },
"config": { "config": {

80
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "689efd88d0e105422ae5a6009b651e22", "content-hash": "0474966a06e7b2b0454614e9b684fd7b",
"packages": [ "packages": [
{ {
"name": "composer/package-versions-deprecated", "name": "composer/package-versions-deprecated",
@ -6129,6 +6129,84 @@
], ],
"time": "2021-05-16T13:07:46+00:00" "time": "2021-05-16T13:07:46+00:00"
}, },
{
"name": "twig/extra-bundle",
"version": "v3.3.1",
"source": {
"type": "git",
"url": "https://github.com/twigphp/twig-extra-bundle.git",
"reference": "e12a8ee63387abb83fb7e4c897663bfb94ac22b6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/e12a8ee63387abb83fb7e4c897663bfb94ac22b6",
"reference": "e12a8ee63387abb83fb7e4c897663bfb94ac22b6",
"shasum": ""
},
"require": {
"php": "^7.1.3|^8.0",
"symfony/framework-bundle": "^4.3|^5.0",
"symfony/twig-bundle": "^4.3|^5.0",
"twig/twig": "^2.4|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.9|^5.0.9",
"twig/cache-extra": "^3.0",
"twig/cssinliner-extra": "^2.12|^3.0",
"twig/html-extra": "^2.12|^3.0",
"twig/inky-extra": "^2.12|^3.0",
"twig/intl-extra": "^2.12|^3.0",
"twig/markdown-extra": "^2.12|^3.0",
"twig/string-extra": "^2.12|^3.0"
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"autoload": {
"psr-4": {
"Twig\\Extra\\TwigExtraBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com",
"homepage": "http://fabien.potencier.org",
"role": "Lead Developer"
}
],
"description": "A Symfony bundle for extra Twig extensions",
"homepage": "https://twig.symfony.com",
"keywords": [
"bundle",
"extra",
"twig"
],
"support": {
"source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.3.1"
},
"funding": [
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/twig/twig",
"type": "tidelift"
}
],
"time": "2021-05-12T07:47:40+00:00"
},
{ {
"name": "twig/twig", "name": "twig/twig",
"version": "v3.3.2", "version": "v3.3.2",

View File

@ -9,4 +9,5 @@ return [
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
EasyCorp\Bundle\EasyAdminBundle\EasyAdminBundle::class => ['all' => true], EasyCorp\Bundle\EasyAdminBundle\EasyAdminBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
]; ];

View File

@ -344,6 +344,9 @@
"templates/base.html.twig" "templates/base.html.twig"
] ]
}, },
"symfony/twig-pack": {
"version": "v1.0.1"
},
"symfony/uid": { "symfony/uid": {
"version": "v5.2.6" "version": "v5.2.6"
}, },
@ -370,6 +373,9 @@
"symfony/yaml": { "symfony/yaml": {
"version": "v5.2.9" "version": "v5.2.9"
}, },
"twig/extra-bundle": {
"version": "v3.3.1"
},
"twig/twig": { "twig/twig": {
"version": "v3.3.2" "version": "v3.3.2"
} }