From 150011162181e287e8fdb1cbba2c8ecefd81b3f4 Mon Sep 17 00:00:00 2001 From: Matias Perrone Date: Tue, 28 Mar 2023 18:24:39 -0300 Subject: [PATCH 1/2] Added PHP 8.1 and 8.2 as required versions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3c2f845..b651e80 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^7.4 || ^8.0 || ^8.1 || ^8.2", "codeigniter4/framework": "^4.3" }, "autoload": { From 8c141723d7d8efeb425fa6c6c78a6590024305aa Mon Sep 17 00:00:00 2001 From: Matias Perrone Date: Tue, 28 Mar 2023 18:30:22 -0300 Subject: [PATCH 2/2] Update php.yml Added tests for PHP 8.1 and 8.2 --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index bcfbd88..4020d20 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - php-versions: ['7.4', '8.0'] + php-versions: ['7.4', '8.0', '8.1', '8.2'] runs-on: ubuntu-latest