diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ba9233..46305be 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.*' @@ -65,11 +66,11 @@ jobs: - name: Update project dependencies if: matrix.dependency == '' - run: composer update --no-progress --ansi --prefer-stable + run: composer update --no-progress --ansi --prefer-stable --ignore-platform-req=php - name: Update project dependencies lowest if: matrix.dependency == 'lowest' - run: composer update --no-progress --ansi --prefer-lowest --prefer-stable + run: composer update --no-progress --ansi --prefer-lowest --prefer-stable --ignore-platform-req=php - name: Disable deprecations notices for lowest dependencies if: matrix.dependency == 'lowest' @@ -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",