From 549d18b3cc80f07e27ccf5aa284a43dbcd109fcc Mon Sep 17 00:00:00 2001 From: Frederik Bosch Date: Wed, 22 Nov 2023 11:21:36 +0100 Subject: [PATCH] support php 8.2 --- .github/workflows/code_checks.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index dcc13c9..5f87d05 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.0', '8.1'] + php: ['8.1', '8.2'] name: PHP ${{ matrix.php }} tests steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} diff --git a/composer.json b/composer.json index 07d21c5..424e027 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name" : "genkgo/migrations", "license": "MIT", "require" : { - "php" : "~8.0.0 || ~8.1.0", + "php" : "~8.1.0 || ~8.2.0", "ext-pdo": "*" }, "require-dev" : {