From 35d5d62dc9017d28be7c322eb485e536b46e9e00 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Tue, 3 Sep 2024 16:25:05 +0200 Subject: [PATCH] requires PHP 8.2 --- .github/workflows/static-analysis.yml | 2 +- .github/workflows/tests.yml | 4 ++-- composer.json | 2 +- readme.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 5a39324e..6f22b2fb 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: - php-version: 8.0 + php-version: 8.2 coverage: none - run: composer install --no-progress --prefer-dist diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9efdb825..a172a2cf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] + php: ['8.2', '8.3', '8.4', '8.5'] fail-fast: false @@ -112,7 +112,7 @@ jobs: - name: Save Code Coverage - if: ${{ matrix.php == '8.0' }} + if: ${{ matrix.php == '8.2' }} env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | diff --git a/composer.json b/composer.json index c846ef87..e6752e93 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "8.0 - 8.5" + "php": "8.2 - 8.5" }, "require-dev": { "tracy/tracy": "^2.9", diff --git a/readme.md b/readme.md index 6b21c237..bf29ecc9 100644 --- a/readme.md +++ b/readme.md @@ -34,7 +34,7 @@ Install Dibi via Composer: composer require dibi/dibi ``` -The Dibi 5.0 requires PHP version 8.0 and supports PHP up to 8.5. +The Dibi 5.0 requires PHP version 8.2 and supports PHP up to 8.5. Usage