Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 77aa174

Browse filesBrowse files
Merge branch '3.4' into 4.4
* 3.4: Remove branch-version (keep them for contracts only) [Serializer] fix decoding float XML attributes starting with 0 add missing dutch translations [Validator] Add missing romanian translations do not translate null placeholders or titles
2 parents 4abbb1d + d152131 commit 77aa174
Copy full SHA for 77aa174

File tree

Expand file treeCollapse file tree

73 files changed

+162
-275
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

73 files changed

+162
-275
lines changed

‎.appveyor.yml

Copy file name to clipboardExpand all lines: .appveyor.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ install:
4949
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex
5050
- git config --global user.email ""
5151
- git config --global user.name "Symfony"
52-
- php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit src\Symfony\Contracts
52+
- php .github/build-packages.php "HEAD^" %APPVEYOR_REPO_BRANCH% src\Symfony\Bridge\PhpUnit src\Symfony\Contracts
5353
- SET COMPOSER_ROOT_VERSION=%APPVEYOR_REPO_BRANCH%.x-dev
5454
- php composer.phar update --no-progress --no-suggest --ansi
5555
- php phpunit install

‎.github/build-packages.php

Copy file name to clipboardExpand all lines: .github/build-packages.php
+3-6Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
if (3 > $_SERVER['argc']) {
4-
echo "Usage: branch dir1 dir2 ... dirN\n";
4+
echo "Usage: branch version dir1 dir2 ... dirN\n";
55
exit(1);
66
}
77
chdir(dirname(__DIR__));
@@ -14,6 +14,7 @@
1414
$dirs = $_SERVER['argv'];
1515
array_shift($dirs);
1616
$mergeBase = trim(shell_exec(sprintf('git merge-base "%s" HEAD', array_shift($dirs))));
17+
$version = array_shift($dirs);
1718

1819
$packages = array();
1920
$flags = JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
@@ -50,11 +51,7 @@
5051
passthru("cd $dir && git init && git add . && git commit -q -m - && git archive -o package.tar HEAD && rm .git/ -Rf");
5152
}
5253

53-
if (!isset($package->extra->{'branch-version'})) {
54-
echo "Missing \"branch-version\" in composer.json's \"extra\".\n";
55-
exit(1);
56-
}
57-
$package->version = $package->extra->{'branch-version'}.'.x-dev';
54+
$package->version = (isset($package->extra->{'branch-version'}) ? $package->extra->{'branch-version'} : $version).'.x-dev';
5855
$package->dist['type'] = 'tar';
5956
$package->dist['url'] = 'file://'.str_replace(DIRECTORY_SEPARATOR, '/', dirname(__DIR__))."/$dir/package.tar";
6057

‎.github/workflows/tests.yml

Copy file name to clipboardExpand all lines: .github/workflows/tests.yml
+3-4Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ jobs:
5757
- name: Configure composer
5858
run: |
5959
([ -d ~/.composer ] || mkdir ~/.composer) && cp .github/composer-config.json ~/.composer/config.json
60-
SYMFONY_VERSION=$(cat composer.json | grep '^ *\"branch-version\". *\"[1-9]' | grep -o '[0-9.]*')
61-
echo "SYMFONY_VERSION=$SYMFONY_VERSION" >> $GITHUB_ENV
62-
echo "COMPOSER_ROOT_VERSION=$SYMFONY_VERSION.x-dev" >> $GITHUB_ENV
60+
BRANCH_REF=${GITHUB_BASE_REF:-$GITHUB_REF}
61+
echo "COMPOSER_ROOT_VERSION=${BRANCH_REF:11}.x-dev" >> $GITHUB_ENV
6362
6463
- name: Determine composer cache directory
6564
id: composer-cache
@@ -95,6 +94,6 @@ jobs:
9594
run: |
9695
[ -d .phpunit ] && mv .phpunit .phpunit.bak
9796
wget -q https://github.com/symfony/binary-utils/releases/download/v0.1/vulcain_0.1.3_Linux_x86_64.tar.gz -O - | tar xz && mv vulcain /usr/local/bin
98-
docker run --rm -e COMPOSER_ROOT_VERSION -e SYMFONY_VERSION -v $(pwd):/app -v $(which composer):/usr/local/bin/composer -v /usr/local/bin/vulcain:/usr/local/bin/vulcain -w /app php:7.4-alpine ./phpunit src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php --filter testHttp2Push
97+
docker run --rm -e COMPOSER_ROOT_VERSION -v $(pwd):/app -v $(which composer):/usr/local/bin/composer -v /usr/local/bin/vulcain:/usr/local/bin/vulcain -w /app php:7.4-alpine ./phpunit src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php --filter testHttp2Push
9998
sudo rm -rf .phpunit
10099
[ -d .phpunit.bak ] && mv .phpunit.bak .phpunit

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ install:
191191
git fetch --depth=2 origin refs/pull/$SYMFONY_PHPUNIT_BRIDGE_PR/head
192192
git rm -rq src/Symfony/Bridge/PhpUnit
193193
git checkout -q FETCH_HEAD -- src/Symfony/Bridge/PhpUnit
194-
export SYMFONY_VERSION=$(cat src/Symfony/Bridge/PhpUnit/composer.json | grep '^ *"branch-version". *"[1-9]' | grep -o '[0-9.]*')
194+
export SYMFONY_VERSION=$(curl -s https://api.github.com/repos/symfony/symfony/pulls/$SYMFONY_PHPUNIT_BRIDGE_PR | jq -r .base.ref)
195195
sed -i 's/"symfony\/phpunit-bridge": ".*"/"symfony\/phpunit-bridge": "'$SYMFONY_VERSION'.x@dev"/' composer.json
196196
rm -rf .phpunit
197197
fi
@@ -202,13 +202,13 @@ install:
202202
git config --global user.name "Symfony"
203203
204204
if [[ ! $deps ]]; then
205-
php .github/build-packages.php HEAD^ src/Symfony/Bridge/PhpUnit src/Symfony/Contracts
205+
php .github/build-packages.php HEAD^ $TRAVIS_BRANCH src/Symfony/Bridge/PhpUnit src/Symfony/Contracts
206206
composer remove --dev --no-update paragonie/sodium_compat
207207
else
208208
export SYMFONY_DEPRECATIONS_HELPER=weak &&
209209
cp composer.json composer.json.orig &&
210210
echo -e '{\n"require":{'"$(grep phpunit-bridge composer.json)"'"php":"*"},"minimum-stability":"dev"}' > composer.json &&
211-
php .github/build-packages.php HEAD^ $(find src/Symfony -mindepth 2 -type f -name composer.json -printf '%h\n' | sort) &&
211+
php .github/build-packages.php HEAD^ $TRAVIS_BRANCH $(find src/Symfony -mindepth 2 -type f -name composer.json -printf '%h\n' | sort) &&
212212
mv composer.json composer.json.phpunit &&
213213
mv composer.json.orig composer.json
214214
fi
@@ -221,12 +221,12 @@ install:
221221
# For the feature-branch, when deps=high, the version before it is checked out and tested with the locally patched components
222222
if [[ $deps = high && $TRAVIS_BRANCH = *.x ]]; then
223223
export FLIP='🙃'
224-
export SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) &&
224+
export SYMFONY_VERSION=$(git ls-remote -q --heads | grep -o '/[1-9]\.[0-9].*' | tail -n 1 | sed s/.//) &&
225225
git fetch --depth=2 origin $SYMFONY_VERSION &&
226226
git checkout -m FETCH_HEAD &&
227227
export COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n' | sort)
228228
else
229-
export SYMFONY_VERSION=$(cat composer.json | grep '^ *"branch-version". *"[1-9]' | grep -o '[0-9.]*')
229+
export SYMFONY_VERSION=$TRAVIS_BRANCH
230230
fi
231231
232232
- |
@@ -253,7 +253,7 @@ install:
253253
254254
- |
255255
# Legacy tests are skipped when deps=high and when the current branch version has not the same major version number as the next one
256-
[[ $deps = high && ${SYMFONY_VERSION%.*} != $(git show $(git ls-remote --heads | grep -FA1 /$SYMFONY_VERSION | tail -n 1):composer.json | grep '^ *"branch-version". *"[1-9]' | grep -o '[0-9]*' | head -n 1) ]] && export LEGACY=,legacy
256+
[[ $deps = high && ${SYMFONY_VERSION%.*} != $(git ls-remote -q --heads | cut -f2 | grep -FA1 /$SYMFONY_VERSION | tail -n 1 | grep -o '[0-9]*') ]] && export LEGACY=,legacy
257257
258258
export COMPOSER_ROOT_VERSION=$SYMFONY_VERSION.x-dev
259259
if [[ $deps ]]; then mv composer.json.phpunit composer.json; fi

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,5 @@
160160
"url": "src/Symfony/Contracts"
161161
}
162162
],
163-
"minimum-stability": "dev",
164-
"extra": {
165-
"branch-version": "4.4"
166-
}
163+
"minimum-stability": "dev"
167164
}

‎src/Symfony/Bridge/Doctrine/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Doctrine/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,5 @@
7070
"/Tests/"
7171
]
7272
},
73-
"minimum-stability": "dev",
74-
"extra": {
75-
"branch-version": "4.4"
76-
}
73+
"minimum-stability": "dev"
7774
}

‎src/Symfony/Bridge/Monolog/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Monolog/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,5 @@
4242
"/Tests/"
4343
]
4444
},
45-
"minimum-stability": "dev",
46-
"extra": {
47-
"branch-version": "4.4"
48-
}
45+
"minimum-stability": "dev"
4946
}

‎src/Symfony/Bridge/PhpUnit/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/PhpUnit/composer.json
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
"bin/simple-phpunit"
3838
],
3939
"minimum-stability": "dev",
40-
"extra": {
41-
"branch-version": "4.4",
4240
"thanks": {
4341
"name": "phpunit/phpunit",
4442
"url": "https://github.com/sebastianbergmann/phpunit"

‎src/Symfony/Bridge/ProxyManager/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/ProxyManager/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,5 @@
3232
"/Tests/"
3333
]
3434
},
35-
"minimum-stability": "dev",
36-
"extra": {
37-
"branch-version": "4.4"
38-
}
35+
"minimum-stability": "dev"
3936
}

‎src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@
444444
{%- for attrname, attrvalue in attr -%}
445445
{{- " " -}}
446446
{%- if attrname in ['placeholder', 'title'] -%}
447-
{{- attrname }}="{{ translation_domain is same as(false) ? attrvalue : attrvalue|trans(attr_translation_parameters, translation_domain) }}"
447+
{{- attrname }}="{{ translation_domain is same as(false) or attrvalue is null ? attrvalue : attrvalue|trans(attr_translation_parameters, translation_domain) }}"
448448
{%- elseif attrvalue is same as(true) -%}
449449
{{- attrname }}="{{ attrname }}"
450450
{%- elseif attrvalue is not same as(false) -%}

‎src/Symfony/Bridge/Twig/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Twig/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,5 @@
7878
"/Tests/"
7979
]
8080
},
81-
"minimum-stability": "dev",
82-
"extra": {
83-
"branch-version": "4.4"
84-
}
81+
"minimum-stability": "dev"
8582
}

‎src/Symfony/Bundle/DebugBundle/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DebugBundle/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,5 @@
4141
"/Tests/"
4242
]
4343
},
44-
"minimum-stability": "dev",
45-
"extra": {
46-
"branch-version": "4.4"
47-
}
44+
"minimum-stability": "dev"
4845
}

‎src/Symfony/Bundle/FrameworkBundle/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,5 @@
106106
"/Tests/"
107107
]
108108
},
109-
"minimum-stability": "dev",
110-
"extra": {
111-
"branch-version": "4.4"
112-
}
109+
"minimum-stability": "dev"
113110
}

‎src/Symfony/Bundle/SecurityBundle/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SecurityBundle/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,5 @@
5858
"/Tests/"
5959
]
6060
},
61-
"minimum-stability": "dev",
62-
"extra": {
63-
"branch-version": "4.4"
64-
}
61+
"minimum-stability": "dev"
6562
}

‎src/Symfony/Bundle/TwigBundle/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/TwigBundle/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,5 @@
5050
"/Tests/"
5151
]
5252
},
53-
"minimum-stability": "dev",
54-
"extra": {
55-
"branch-version": "4.4"
56-
}
53+
"minimum-stability": "dev"
5754
}

‎src/Symfony/Bundle/WebProfilerBundle/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/WebProfilerBundle/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,5 @@
4141
"/Tests/"
4242
]
4343
},
44-
"minimum-stability": "dev",
45-
"extra": {
46-
"branch-version": "4.4"
47-
}
44+
"minimum-stability": "dev"
4845
}

‎src/Symfony/Bundle/WebServerBundle/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/WebServerBundle/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,5 @@
3434
"symfony/monolog-bridge": "For using the log server.",
3535
"symfony/expression-language": "For using the filter option of the log server."
3636
},
37-
"minimum-stability": "dev",
38-
"extra": {
39-
"branch-version": "4.4"
40-
}
37+
"minimum-stability": "dev"
4138
}

‎src/Symfony/Component/Asset/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Asset/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,5 @@
3131
"/Tests/"
3232
]
3333
},
34-
"minimum-stability": "dev",
35-
"extra": {
36-
"branch-version": "4.4"
37-
}
34+
"minimum-stability": "dev"
3835
}

‎src/Symfony/Component/BrowserKit/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/BrowserKit/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,5 @@
3434
"/Tests/"
3535
]
3636
},
37-
"minimum-stability": "dev",
38-
"extra": {
39-
"branch-version": "4.4"
40-
}
37+
"minimum-stability": "dev"
4138
}

‎src/Symfony/Component/Cache/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,5 @@
5050
"/Tests/"
5151
]
5252
},
53-
"minimum-stability": "dev",
54-
"extra": {
55-
"branch-version": "4.4"
56-
}
53+
"minimum-stability": "dev"
5754
}

‎src/Symfony/Component/Config/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Config/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,5 @@
3939
"/Tests/"
4040
]
4141
},
42-
"minimum-stability": "dev",
43-
"extra": {
44-
"branch-version": "4.4"
45-
}
42+
"minimum-stability": "dev"
4643
}

‎src/Symfony/Component/Console/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,5 @@
5252
"/Tests/"
5353
]
5454
},
55-
"minimum-stability": "dev",
56-
"extra": {
57-
"branch-version": "4.4"
58-
}
55+
"minimum-stability": "dev"
5956
}

‎src/Symfony/Component/CssSelector/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/CssSelector/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,5 @@
2828
"/Tests/"
2929
]
3030
},
31-
"minimum-stability": "dev",
32-
"extra": {
33-
"branch-version": "4.4"
34-
}
31+
"minimum-stability": "dev"
3532
}

‎src/Symfony/Component/Debug/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Debug/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,5 @@
3232
"/Tests/"
3333
]
3434
},
35-
"minimum-stability": "dev",
36-
"extra": {
37-
"branch-version": "4.4"
38-
}
35+
"minimum-stability": "dev"
3936
}

‎src/Symfony/Component/DependencyInjection/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,5 @@
4848
"/Tests/"
4949
]
5050
},
51-
"minimum-stability": "dev",
52-
"extra": {
53-
"branch-version": "4.4"
54-
}
51+
"minimum-stability": "dev"
5552
}

‎src/Symfony/Component/DomCrawler/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/DomCrawler/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,5 @@
3636
"/Tests/"
3737
]
3838
},
39-
"minimum-stability": "dev",
40-
"extra": {
41-
"branch-version": "4.4"
42-
}
39+
"minimum-stability": "dev"
4340
}

‎src/Symfony/Component/Dotenv/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Dotenv/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,5 @@
2727
"/Tests/"
2828
]
2929
},
30-
"minimum-stability": "dev",
31-
"extra": {
32-
"branch-version": "4.4"
33-
}
30+
"minimum-stability": "dev"
3431
}

‎src/Symfony/Component/ErrorHandler/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/ErrorHandler/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,5 @@
3232
"/Tests/"
3333
]
3434
},
35-
"minimum-stability": "dev",
36-
"extra": {
37-
"branch-version": "4.4"
38-
}
35+
"minimum-stability": "dev"
3936
}

‎src/Symfony/Component/EventDispatcher/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/EventDispatcher/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,5 @@
4646
"/Tests/"
4747
]
4848
},
49-
"minimum-stability": "dev",
50-
"extra": {
51-
"branch-version": "4.4"
52-
}
49+
"minimum-stability": "dev"
5350
}

‎src/Symfony/Component/ExpressionLanguage/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/ExpressionLanguage/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,5 @@
2626
"/Tests/"
2727
]
2828
},
29-
"minimum-stability": "dev",
30-
"extra": {
31-
"branch-version": "4.4"
32-
}
29+
"minimum-stability": "dev"
3330
}

‎src/Symfony/Component/Filesystem/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Filesystem/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,5 @@
2525
"/Tests/"
2626
]
2727
},
28-
"minimum-stability": "dev",
29-
"extra": {
30-
"branch-version": "4.4"
31-
}
28+
"minimum-stability": "dev"
3229
}

‎src/Symfony/Component/Finder/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Finder/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,5 @@
2424
"/Tests/"
2525
]
2626
},
27-
"minimum-stability": "dev",
28-
"extra": {
29-
"branch-version": "4.4"
30-
}
27+
"minimum-stability": "dev"
3128
}

‎src/Symfony/Component/Form/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/composer.json
+1-4Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,5 @@
6060
"/Tests/"
6161
]
6262
},
63-
"minimum-stability": "dev",
64-
"extra": {
65-
"branch-version": "4.4"
66-
}
63+
"minimum-stability": "dev"
6764
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.