Skip to content

Commit e5e5a8f

Browse files
committed
minor #1152 Updated backend dependencies (javiereguiluz)
This PR was squashed before being merged into the master branch. Discussion ---------- Updated backend dependencies Dependencies were updated with Composer 2 RC1. Commits ------- 8a3ac44 Updated backend dependencies
2 parents 978b34f + 8a3ac44 commit e5e5a8f

File tree

6 files changed

+863
-647
lines changed

6 files changed

+863
-647
lines changed

.php_cs.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $finder = PhpCsFixer\Finder::create()
2020
->notPath('public/index.php')
2121
;
2222

23-
return PhpCsFixer\Config::create()
23+
return (new PhpCsFixer\Config())
2424
->setRiskyAllowed(true)
2525
->setRules([
2626
'@Symfony' => true,

.travis.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
# the same directory as the simple-phpunit if it is not provided. It's also possible to set
2121
# this env var in the phpunit.xml.dist file.
2222
- SYMFONY_PHPUNIT_DIR=./bin/.phpunit
23-
- SYMFONY_DEPRECATIONS_HELPER=9
23+
- SYMFONY_DEPRECATIONS_HELPER=6
2424
- ACTION="install"
2525
# Add the Symfony binary's path to PATH.
2626
- PATH="$HOME/.symfony/bin:$PATH"
@@ -35,16 +35,13 @@ jobs:
3535
include:
3636
# Run tests with the dependencies from composer.lock
3737
- php: 7.2
38-
- php: 7.3
3938
- php: 7.4
40-
41-
# Run tests against dev (currently 5.1.x-dev)
42-
- php: 7.3
43-
env: STABILITY=dev ACTION=update
44-
39+
- php: nightly
4540
# Run tests against dev-master (currently 5.2.x-dev)
46-
- php: 7.3
41+
- php: 7.4
4742
env: STABILITY=dev SYMFONY=5.* ACTION=update
43+
allow_failures:
44+
- php: nightly
4845

4946
before_install:
5047
- phpenv config-rm xdebug.ini || true

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"ext-pdo_sqlite": "*",
1515
"composer/package-versions-deprecated": "^1.8",
1616
"doctrine/doctrine-bundle": "^1.12|^2.0",
17-
"doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
17+
"doctrine/doctrine-migrations-bundle": "^3.0",
1818
"doctrine/orm": "^2.5.11",
1919
"erusev/parsedown": "^1.6",
2020
"sensio/framework-extra-bundle": "^5.1",

0 commit comments

Comments
 (0)