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",