Skip to content

Commit 7dd9744

Browse files
committed
feature #905 Updated to Symfony 4.2 stable (javiereguiluz)
This PR was squashed before being merged into the master branch (closes #905). Discussion ---------- Updated to Symfony 4.2 stable Commits ------- 164daf4 Updated to Symfony 4.2 stable
2 parents d6632b8 + 164daf4 commit 7dd9744

File tree

4 files changed

+502
-479
lines changed

4 files changed

+502
-479
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cache:
99
env:
1010
global:
1111
- SYMFONY_PHPUNIT_DIR=./bin/.phpunit
12-
- SYMFONY_DEPRECATIONS_HELPER=9
12+
- SYMFONY_DEPRECATIONS_HELPER=29
1313

1414
matrix:
1515
fast_finish: true
@@ -40,8 +40,5 @@ script:
4040
- ./bin/console lint:xliff translations
4141
# this checks that the application doesn't use dependencies with known security vulnerabilities
4242
- ./bin/console security:check
43-
# this checks that the composer.json and composer.lock files are valid
44-
# disabled until 'symfony/webpack-encore-bundle' releases a stable version (to avoid using 'dev-master')
45-
#- composer validate --strict
4643
# this checks that Doctrine's mapping configurations are valid
4744
- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction

composer.json

+18-19
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"license": "MIT",
44
"type": "project",
55
"description": "Symfony Demo Application",
6-
"minimum-stability": "dev",
76
"require": {
87
"php": "^7.1.3",
98
"ext-pdo_sqlite": "*",
@@ -12,37 +11,37 @@
1211
"doctrine/orm": "^2.5.11",
1312
"erusev/parsedown": "^1.6",
1413
"ezyang/htmlpurifier": "^4.9",
15-
"sensio/framework-extra-bundle": "^5.0",
14+
"sensio/framework-extra-bundle": "^5.1",
1615
"sensiolabs/security-checker": "^5.0",
17-
"symfony/asset": "4.2.*",
18-
"symfony/expression-language": "4.2.*",
16+
"symfony/asset": "*",
17+
"symfony/expression-language": "*",
1918
"symfony/flex": "^1.1",
20-
"symfony/form": "4.2.*",
21-
"symfony/framework-bundle": "4.2.*",
19+
"symfony/form": "*",
20+
"symfony/framework-bundle": "*",
2221
"symfony/monolog-bundle": "^3.1",
2322
"symfony/polyfill-php72": "^1.8",
24-
"symfony/security-bundle": "4.2.*",
23+
"symfony/security-bundle": "*",
2524
"symfony/swiftmailer-bundle": "^3.1",
26-
"symfony/translation": "4.2.*",
27-
"symfony/twig-bundle": "4.2.*",
28-
"symfony/validator": "4.2.*",
25+
"symfony/translation": "*",
26+
"symfony/twig-bundle": "*",
27+
"symfony/validator": "*",
2928
"symfony/webpack-encore-bundle": "dev-master",
30-
"symfony/yaml": "4.2.*",
29+
"symfony/yaml": "*",
3130
"twig/extensions": "^1.5",
3231
"white-october/pagerfanta-bundle": "^1.1"
3332
},
3433
"require-dev": {
3534
"dama/doctrine-test-bundle": "^5.0",
3635
"doctrine/doctrine-fixtures-bundle": "^3.0",
3736
"friendsofphp/php-cs-fixer": "^2.12",
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.*"
37+
"symfony/browser-kit": "*",
38+
"symfony/css-selector": "*",
39+
"symfony/debug-bundle": "*",
40+
"symfony/dotenv": "*",
41+
"symfony/phpunit-bridge": "*",
42+
"symfony/stopwatch": "*",
43+
"symfony/web-profiler-bundle": "*",
44+
"symfony/web-server-bundle": "*"
4645
},
4746
"config": {
4847
"platform": {

0 commit comments

Comments
 (0)