From faa07cf9b99b880dd3a0c001a845a0cb78b4bf30 Mon Sep 17 00:00:00 2001 From: wakebit <32976842+wakebit@users.noreply.github.com> Date: Mon, 24 Apr 2023 10:26:40 +0500 Subject: [PATCH] php 8.2 support --- .github/workflows/php-cs-fixer.yml | 2 +- .github/workflows/psalm.yml | 2 +- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index dd166fb..a291210 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -22,7 +22,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.0 + php-version: 8.2 coverage: none tools: none diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index d6a5d56..00b2d26 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -22,7 +22,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.0 + php-version: 8.2 coverage: none tools: none diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 713499d..c537bf8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1] + php: [8.0, 8.1, 8.2] name: PHP ${{ matrix.php }} diff --git a/composer.json b/composer.json index 040a802..1f793a9 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } }, "require": { - "php": "^8.0|^8.1", + "php": "^8.0|^8.1|^8.2", "cycle/annotated": "^3.0", "cycle/database": "^2.0", "cycle/migrations": "^3.0",