diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 630ba94d..e6b4cdc9 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -15,6 +15,7 @@ jobs: fail-fast: false matrix: php: + - '8.0' - '7.4' - '7.3' - '7.2' diff --git a/CHANGELOG.md b/CHANGELOG.md index 20795aa6..2a9ee1cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - [BC BREAK] Removed the `options.excluded_exceptions` configuration option. Instead of setting it, configure the `IgnoreErrorsIntegration` integration (#385) - [BC BREAK] Refactorized the `ConsoleCommandListener`, `ErrorListener`, `RequestListener` and `SubRequestListener` event listeners (#387) - CLI commands registration policy changed to lazy load +- PHP 8 support (#399, thanks to @Yozhef) ## 3.5.3 (2020-10-13) diff --git a/composer.json b/composer.json index 054993eb..dda54762 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "sort-packages": true }, "require": { - "php": "^7.2", + "php": "^7.2||^8.0", "jean85/pretty-package-versions": "^1.5", "sentry/sdk": "^3.0", "symfony/config": "^3.4||^4.0||^5.0",