Skip to content

Commit 77094af

Browse files
Merge branch '6.0' into 6.1
* 6.0: Fix URL to get composer.phar Fix appveyor [TwigBridge] Fix the build
2 parents 3d00baf + f0673f0 commit 77094af

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

.appveyor.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ clone_depth: 2
33
clone_folder: c:\projects\symfony
44
image: Visual Studio 2019
55

6-
cache:
7-
- composer.phar
8-
- .phpunit -> phpunit
9-
106
init:
117
- SET PATH=c:\php;%PATH%
128
- SET COMPOSER_NO_INTERACTION=1
@@ -49,9 +45,8 @@ install:
4945
- echo extension=php_sodium.dll >> php.ini-max
5046
- copy /Y php.ini-max php.ini
5147
- cd c:\projects\symfony
52-
- IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/2.2.10/composer.phar)
53-
- php composer.phar self-update --2
54-
- copy /Y .github\composer-config.json %APPDATA%\Composer\config.json
48+
- appveyor DownloadFile https://getcomposer.org/download/latest-stable/composer.phar
49+
- mkdir %APPDATA%\Composer && copy /Y .github\composer-config.json %APPDATA%\Composer\config.json
5550
- git config --global user.email ""
5651
- git config --global user.name "Symfony"
5752
- FOR /F "tokens=* USEBACKQ" %%F IN (`bash -c "grep ' VERSION = ' src/Symfony/Component/HttpKernel/Kernel.php | grep -o '[0-9][0-9]*\.[0-9]'"`) DO (SET SYMFONY_VERSION=%%F)

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"symfony/http-kernel": "^5.4|^6.0",
3434
"symfony/messenger": "^5.4|^6.0",
3535
"symfony/doctrine-messenger": "^5.4|^6.0",
36-
"symfony/phpunit-bridge": "^5.4|^6.0",
3736
"symfony/property-access": "^5.4|^6.0",
3837
"symfony/property-info": "^5.4|^6.0",
3938
"symfony/proxy-manager-bridge": "^5.4|^6.0",

src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@
101101
{%- endif -%}
102102
{%- endif -%}
103103
<label{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}>
104-
{{- widget|raw }}
105-
{%- if label is not same as(false) -%}
104+
{#- if statement must be kept on the same line, to force the space between widget and label -#}
105+
{{- widget|raw }} {% if label is not same as(false) -%}
106106
{%- if translation_domain is same as(false) -%}
107107
{%- if label_html is same as(false) -%}
108108
{{ label -}}

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@
6565
"symfony/uid": "^5.4|^6.0",
6666
"symfony/web-link": "^5.4|^6.0",
6767
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
68-
"twig/twig": "^2.10|^3.0",
69-
"symfony/phpunit-bridge": "^5.4|^6.0"
68+
"twig/twig": "^2.10|^3.0"
7069
},
7170
"conflict": {
7271
"doctrine/annotations": "<1.13.1",

0 commit comments

Comments
 (0)