Skip to content

Commit d6632b8

Browse files
committed
feature #896 Updated dependencies to latest Symfony 4.2 dev version (javiereguiluz)
This PR was squashed before being merged into the master branch (closes #896). Discussion ---------- Updated dependencies to latest Symfony 4.2 dev version No issues after updating ... but I still see lots of deprecations, all of them related to Doctrine bundles: ![deprecations](https://user-images.githubusercontent.com/73419/48625578-f2642c80-e9af-11e8-8587-7c1701d20411.png) Commits ------- ed9ca74 Updated dependencies to latest Symfony 4.2 dev version
2 parents 6e41275 + ed9ca74 commit d6632b8

14 files changed

+991
-925
lines changed

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/build/
2-
/node_modules/
3-
npm-debug.log
4-
yarn-error.log
51
/var/*
62
!/var/cache
73
/var/cache/*
@@ -35,3 +31,9 @@ yarn-error.log
3531
/.php_cs
3632
/.php_cs.cache
3733
###< friendsofphp/php-cs-fixer ###
34+
35+
###> symfony/webpack-encore-bundle ###
36+
/node_modules/
37+
npm-debug.log
38+
yarn-error.log
39+
###< symfony/webpack-encore-bundle ###

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ cache:
99
env:
1010
global:
1111
- SYMFONY_PHPUNIT_DIR=./bin/.phpunit
12+
- SYMFONY_DEPRECATIONS_HELPER=9
1213

1314
matrix:
1415
fast_finish: true
@@ -40,6 +41,7 @@ script:
4041
# this checks that the application doesn't use dependencies with known security vulnerabilities
4142
- ./bin/console security:check
4243
# this checks that the composer.json and composer.lock files are valid
43-
- composer validate --strict
44+
# disabled until 'symfony/webpack-encore-bundle' releases a stable version (to avoid using 'dev-master')
45+
#- composer validate --strict
4446
# this checks that Doctrine's mapping configurations are valid
4547
- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction

composer.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,35 @@
1414
"ezyang/htmlpurifier": "^4.9",
1515
"sensio/framework-extra-bundle": "^5.0",
1616
"sensiolabs/security-checker": "^5.0",
17-
"symfony/asset": "4.2.0-beta1",
18-
"symfony/expression-language": "4.2.0-beta1",
17+
"symfony/asset": "4.2.*",
18+
"symfony/expression-language": "4.2.*",
1919
"symfony/flex": "^1.1",
20-
"symfony/form": "4.2.0-beta1",
21-
"symfony/framework-bundle": "4.2.0-beta1",
20+
"symfony/form": "4.2.*",
21+
"symfony/framework-bundle": "4.2.*",
2222
"symfony/monolog-bundle": "^3.1",
2323
"symfony/polyfill-php72": "^1.8",
24-
"symfony/security-bundle": "4.2.0-beta1",
24+
"symfony/security-bundle": "4.2.*",
2525
"symfony/swiftmailer-bundle": "^3.1",
26-
"symfony/translation": "4.2.0-beta1",
27-
"symfony/twig-bundle": "4.2.0-beta1",
28-
"symfony/validator": "4.2.0-beta1",
26+
"symfony/translation": "4.2.*",
27+
"symfony/twig-bundle": "4.2.*",
28+
"symfony/validator": "4.2.*",
2929
"symfony/webpack-encore-bundle": "dev-master",
30-
"symfony/yaml": "4.2.0-beta1",
30+
"symfony/yaml": "4.2.*",
3131
"twig/extensions": "^1.5",
3232
"white-october/pagerfanta-bundle": "^1.1"
3333
},
3434
"require-dev": {
3535
"dama/doctrine-test-bundle": "^5.0",
3636
"doctrine/doctrine-fixtures-bundle": "^3.0",
3737
"friendsofphp/php-cs-fixer": "^2.12",
38-
"symfony/browser-kit": "4.2.0-beta1",
39-
"symfony/css-selector": "4.2.0-beta1",
40-
"symfony/debug-bundle": "4.2.0-beta1",
41-
"symfony/dotenv": "4.2.0-beta1",
42-
"symfony/phpunit-bridge": "4.2.0-beta1",
43-
"symfony/stopwatch": "4.2.0-beta1",
44-
"symfony/web-profiler-bundle": "4.2.0-beta1",
45-
"symfony/web-server-bundle": "4.2.0-beta1"
38+
"symfony/browser-kit": "4.2.*",
39+
"symfony/css-selector": "4.2.*",
40+
"symfony/debug-bundle": "4.2.*",
41+
"symfony/dotenv": "4.2.*",
42+
"symfony/phpunit-bridge": "4.2.*",
43+
"symfony/stopwatch": "4.2.*",
44+
"symfony/web-profiler-bundle": "4.2.*",
45+
"symfony/web-server-bundle": "4.2.*"
4646
},
4747
"config": {
4848
"platform": {
@@ -81,7 +81,8 @@
8181
},
8282
"extra": {
8383
"symfony": {
84-
"allow-contrib": true
84+
"allow-contrib": true,
85+
"require": "4.2.*"
8586
}
8687
}
8788
}

0 commit comments

Comments
 (0)