Skip to content

Updated to Symfony 4.2 stable #905

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cache:
env:
global:
- SYMFONY_PHPUNIT_DIR=./bin/.phpunit
- SYMFONY_DEPRECATIONS_HELPER=9
- SYMFONY_DEPRECATIONS_HELPER=29

matrix:
fast_finish: true
Expand Down Expand Up @@ -40,8 +40,5 @@ script:
- ./bin/console lint:xliff translations
# this checks that the application doesn't use dependencies with known security vulnerabilities
- ./bin/console security:check
# this checks that the composer.json and composer.lock files are valid
# disabled until 'symfony/webpack-encore-bundle' releases a stable version (to avoid using 'dev-master')
#- composer validate --strict
# this checks that Doctrine's mapping configurations are valid
- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction
37 changes: 18 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"license": "MIT",
"type": "project",
"description": "Symfony Demo Application",
"minimum-stability": "dev",
"require": {
"php": "^7.1.3",
"ext-pdo_sqlite": "*",
Expand All @@ -12,37 +11,37 @@
"doctrine/orm": "^2.5.11",
"erusev/parsedown": "^1.6",
"ezyang/htmlpurifier": "^4.9",
"sensio/framework-extra-bundle": "^5.0",
"sensio/framework-extra-bundle": "^5.1",
"sensiolabs/security-checker": "^5.0",
"symfony/asset": "4.2.*",
"symfony/expression-language": "4.2.*",
"symfony/asset": "*",
"symfony/expression-language": "*",
"symfony/flex": "^1.1",
"symfony/form": "4.2.*",
"symfony/framework-bundle": "4.2.*",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/monolog-bundle": "^3.1",
"symfony/polyfill-php72": "^1.8",
"symfony/security-bundle": "4.2.*",
"symfony/security-bundle": "*",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/translation": "4.2.*",
"symfony/twig-bundle": "4.2.*",
"symfony/validator": "4.2.*",
"symfony/translation": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/webpack-encore-bundle": "dev-master",
"symfony/yaml": "4.2.*",
"symfony/yaml": "*",
"twig/extensions": "^1.5",
"white-october/pagerfanta-bundle": "^1.1"
},
"require-dev": {
"dama/doctrine-test-bundle": "^5.0",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"friendsofphp/php-cs-fixer": "^2.12",
"symfony/browser-kit": "4.2.*",
"symfony/css-selector": "4.2.*",
"symfony/debug-bundle": "4.2.*",
"symfony/dotenv": "4.2.*",
"symfony/phpunit-bridge": "4.2.*",
"symfony/stopwatch": "4.2.*",
"symfony/web-profiler-bundle": "4.2.*",
"symfony/web-server-bundle": "4.2.*"
"symfony/browser-kit": "*",
"symfony/css-selector": "*",
"symfony/debug-bundle": "*",
"symfony/dotenv": "*",
"symfony/phpunit-bridge": "*",
"symfony/stopwatch": "*",
"symfony/web-profiler-bundle": "*",
"symfony/web-server-bundle": "*"
},
"config": {
"platform": {
Expand Down
Loading