From 79a5dc81c02ccf09a2a95a6dd3bf9715353efae8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radovan=20Kep=C3=A1k?= Date: Tue, 11 Jan 2022 12:09:29 +0100 Subject: [PATCH] Added support for PHP8.1 (#6) --- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 23c97a6..d2e6c90 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.0', '7.4'] + php: ['8.1', '8.0', '7.4'] fail-fast: false diff --git a/composer.json b/composer.json index 20e46d4..6ec45cc 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ } ], "require": { - "php": ">=7.4 <8.1", + "php": ">=7.4 <8.2", "nette/di": "^3.0.7", "nette/utils": "^3.0", "monolog/monolog": "^2.2",