Skip to content

Updated backend dependencies #1152

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

Merged
merged 1 commit into from
Sep 12, 2020
Merged
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
2 changes: 1 addition & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $finder = PhpCsFixer\Finder::create()
->notPath('public/index.php')
;

return PhpCsFixer\Config::create()
return (new PhpCsFixer\Config())
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
Expand Down
13 changes: 5 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
# the same directory as the simple-phpunit if it is not provided. It's also possible to set
# this env var in the phpunit.xml.dist file.
- SYMFONY_PHPUNIT_DIR=./bin/.phpunit
- SYMFONY_DEPRECATIONS_HELPER=9
- SYMFONY_DEPRECATIONS_HELPER=6
- ACTION="install"
# Add the Symfony binary's path to PATH.
- PATH="$HOME/.symfony/bin:$PATH"
Expand All @@ -35,16 +35,13 @@ jobs:
include:
# Run tests with the dependencies from composer.lock
- php: 7.2
- php: 7.3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so no tests on PHP 7.3 anymore ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No ... I thought that the lowest supported version (7.2) and the highest supported version (7.4) was enough. Do you agree?

- php: 7.4

# Run tests against dev (currently 5.1.x-dev)
- php: 7.3
env: STABILITY=dev ACTION=update

- php: nightly
# Run tests against dev-master (currently 5.2.x-dev)
- php: 7.3
- php: 7.4
env: STABILITY=dev SYMFONY=5.* ACTION=update
allow_failures:
- php: nightly

before_install:
- phpenv config-rm xdebug.ini || true
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"ext-pdo_sqlite": "*",
"composer/package-versions-deprecated": "^1.8",
"doctrine/doctrine-bundle": "^1.12|^2.0",
"doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.5.11",
"erusev/parsedown": "^1.6",
"sensio/framework-extra-bundle": "^5.1",
Expand Down
Loading