Skip to content

Commit 410038f

Browse files
committed
Merge remote-tracking branch 'origin/4.0' into 4.1
# Conflicts: # composer.json
2 parents 02a7041 + be8498f commit 410038f

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

composer.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
},
1515
"require": {
1616
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
17-
"openspout/openspout": "^4.0",
1817
"doctrine/dbal": "^3.4.2",
1918
"doctrine/migrations": "^3.0.2",
2019
"dragonmantank/cron-expression": "^3.0.2",
2120
"drewm/mailchimp-api": "^2.2",
2221
"guzzlehttp/guzzle": "^7.2",
2322
"knplabs/knp-components": "^4.0",
23+
"openspout/openspout": "^4.0",
2424
"pear/archive_tar": "^1.4.14",
2525
"pimcore/newsletter-bundle": "^1.0",
2626
"pimcore/number-sequence-generator": "^2.0",
@@ -29,6 +29,7 @@
2929
"pimcore/pimcore": "^11.0",
3030
"pimcore/search-query-parser": "^1.3",
3131
"pimcore/personalization-bundle": "^1.0",
32+
"rybakit/twig-deferred-extension": "^3.0",
3233
"symfony/asset": "^6.2",
3334
"symfony/config": "^6.2",
3435
"symfony/console": "^6.2",
@@ -44,17 +45,20 @@
4445
"symfony/stopwatch": "^6.2"
4546
},
4647
"require-dev": {
47-
"phpunit/phpunit": "^9.5",
4848
"codeception/codeception": "^5.0.3",
4949
"codeception/module-symfony": "^3.1.0",
5050
"codeception/phpunit-wrapper": "^9",
5151
"php-http/guzzle7-adapter": "^0.1.1",
5252
"phpstan/phpstan": "^1.9",
53-
"phpstan/phpstan-symfony": "^1.2.14"
53+
"phpstan/phpstan-symfony": "^1.2.14",
54+
"phpunit/phpunit": "^9.5"
55+
},
56+
"conflict": {
57+
"twig/twig": "^3.9.0"
5458
},
5559
"suggest": {
56-
"php-http/httplug-bundle": "^1.20.0",
57-
"php-http/guzzle7-adapter": "^0.1.1"
60+
"php-http/guzzle7-adapter": "^0.1.1",
61+
"php-http/httplug-bundle": "^1.20.0"
5862
},
5963
"autoload": {
6064
"psr-4": {

src/Resources/config/services_templating.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ services:
66

77
CustomerManagementFrameworkBundle\Twig\Extension\CmfUrlUtilsExtension:
88
autowire: true
9-
tags: [ 'twig.extension' ]
9+
tags: [ 'twig.extension' ]
10+
11+
# the deferred extension is needed for placeholder helpers to work
12+
# as otherwise the placeholder block would be rendered before any
13+
# content was added (e.g. headTitle)
14+
Twig\DeferredExtension\DeferredExtension: ~

src/Resources/views/layout.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{% endapply %}
1414

1515
{% block head_stylesheets deferred %}
16-
{{ pimcore_head_link() }}
16+
{{ pimcore_head_link() }}
1717
{% endblock %}
1818
</head>
1919
<body class="sidebar-collapse">
@@ -35,7 +35,7 @@
3535
{% endapply %}
3636

3737
{% block headscripts deferred %}
38-
{{ pimcore_head_script() }}
38+
{{ pimcore_head_script() }}
3939
{% endblock %}
4040

4141
</body>

0 commit comments

Comments
 (0)