From 3f79e2ba3b95f55155905f9def73aec98a3a93ec Mon Sep 17 00:00:00 2001 From: Koldo Picaza <1093654+kpicaza@users.noreply.github.com> Date: Fri, 9 Dec 2022 17:54:01 +0100 Subject: [PATCH] [#359] Add PHP 8.2 support --- .github/workflows/coding-standards.yml | 1 + .github/workflows/mutation-tests.yml | 1 + .github/workflows/phpunit.yml | 1 + .github/workflows/psalm.yml | 1 + composer.json | 2 +- 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 6ae6269..3e525a5 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -22,6 +22,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" operating-system: - "ubuntu-latest" diff --git a/.github/workflows/mutation-tests.yml b/.github/workflows/mutation-tests.yml index 9e7bd65..edc13a3 100644 --- a/.github/workflows/mutation-tests.yml +++ b/.github/workflows/mutation-tests.yml @@ -22,6 +22,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" operating-system: - "ubuntu-latest" diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index be2b672..3cd778c 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -22,6 +22,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" operating-system: - "ubuntu-latest" diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index d9adca4..e7909be 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -22,6 +22,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" operating-system: - "ubuntu-latest" diff --git a/composer.json b/composer.json index b854e34..bc9993d 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.4|^8.0|^8.1", + "php": "^7.4|^8.0|^8.1|^8.2", "pheature/toggle-core": "^0.5", "pheature/toggle-crud-psr11-factories": "^0.5", "pheature/toggle-model": "^0.5",