Skip to content

Commit c1879e4

Browse files
authored
Merge pull request #4131 from magento-borg/MC-16002-upgrade-script-fix
- fixed command-line upgrade script does not contain all dev dependencies
2 parents ad2d25c + b43e4dd commit c1879e4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

dev/tools/UpgradeScripts/pre_composer_update_2.3.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,16 @@
233233

234234
output('\nUpdating "require-dev" section of composer.json');
235235
runComposer('require --dev ' .
236-
'phpunit/phpunit:~6.2.0 ' .
237-
'friendsofphp/php-cs-fixer:~2.10.1 ' .
236+
'allure-framework/allure-phpunit:~1.2.0 ' .
237+
'friendsofphp/php-cs-fixer:~2.13.0 ' .
238238
'lusitanian/oauth:~0.8.10 ' .
239+
'magento/magento-coding-standard:~1.0.0 ' .
240+
'magento/magento2-functional-testing-framework:~2.3.14 ' .
239241
'pdepend/pdepend:2.5.2 ' .
242+
'phpunit/phpunit:~6.5.0 ' .
240243
'sebastian/phpcpd:~3.0.0 ' .
241-
'squizlabs/php_codesniffer:3.2.2 --no-update');
244+
'squizlabs/php_codesniffer:3.3.1 ' .
245+
'--sort-packages --no-update');
242246
output('');
243247
runComposer('remove --dev sjparkinson/static-review fabpot/php-cs-fixer --no-update');
244248

0 commit comments

Comments
 (0)