From e6d6b9fda870dba9825a08c4a5e278bed260f59e Mon Sep 17 00:00:00 2001 From: Daric DESBONNES Date: Fri, 13 Aug 2021 11:50:21 +0200 Subject: [PATCH] Allow PHP 8 --- .github/workflows/gitlab-actions.yml | 2 +- CHANGELOG.md | 1 + composer.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gitlab-actions.yml b/.github/workflows/gitlab-actions.yml index aadeace..2edfbf1 100644 --- a/.github/workflows/gitlab-actions.yml +++ b/.github/workflows/gitlab-actions.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '7.2', '7.3', '7.4' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] steps: - uses: actions/checkout@v2 - name: Setup PHP with tools diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e47bca..c46aff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ master * Switch to the new security checker * Migrate from Travis to GitHub Actions * Fix deprecated PHP-CS rules +* Allow PHP 8.0 v0.2.0 ------ diff --git a/composer.json b/composer.json index e702088..d2539f2 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ } ], "require": { - "php": "^7.2", + "php": "^7.2 || ^8.0", "phpstan/phpstan": "^0.12", "sonata-project/datagrid-bundle": "^3.0", "sonata-project/doctrine-orm-admin-bundle": "^3.6"