From 101778540c07837378f542a1db03029faac42c57 Mon Sep 17 00:00:00 2001 From: Vincent Chalamon Date: Wed, 25 Nov 2020 12:07:39 +0100 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 5 +++-- composer.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ba9233..16ce80c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,8 @@ jobs: - '7.2' - '7.3' - '7.4' - - 'rc' + - '8.0' + - '8.1' symfony: - '3.4.*' - '4.4.*' @@ -86,7 +87,7 @@ jobs: composer req --ignore-platform-reqs tilleuls/migration-bundle - name: Run php-cs-fixer tests - if: matrix.php != 'rc' + if: matrix.php != '8.0' && matrix.php != '8.1' run: php-cs-fixer fix --diff --dry-run - name: Run PHPUnit tests diff --git a/composer.json b/composer.json index 5de20e0..c57316c 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.2", + "php": ">=7.2", "doctrine/annotations": "^1.2", "doctrine/dbal": "^2.5", "doctrine/doctrine-bundle": "^1.7.2 || ^2.0",