From 37db7e995e8e358cdd9accc65970a99108f3260c Mon Sep 17 00:00:00 2001 From: Korben Date: Thu, 25 Apr 2024 22:15:29 +0200 Subject: [PATCH] dump php version to 8.3 --- .github/workflows/ci.yml | 44 +++++++++++++++++++--------------------- composer.json | 4 ++-- 2 files changed, 23 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fd8d89..42a9598 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,10 @@ jobs: - ubuntu-latest php_versions: - '7.4' + - '8.0' + - '8.1' + - '8.2' + - '8.3' fail-fast: false env: PHP_CS_FIXER_FUTURE_MODE: '0' @@ -78,67 +82,61 @@ jobs: strategy: fail-fast: false matrix: - coverage: [false] + coverage: [true] exclude_group: ['WithoutSchema,forPHP8'] experimental: [false] operating_system: [ubuntu-latest] - postgres: ['10', '11', '12'] - php_versions: ['7.3', '7.4'] + postgres: ['9.6'] + php_versions: ['7.3'] include: - operating_system: 'ubuntu-latest' php_versions: '7.3' - postgres: '9.6' - experimental: false - coverage: true - exclude_group: WithoutSchema,forPHP8 - - operating_system: 'ubuntu-latest' - php_versions: '7.3' - postgres: '13' + postgres: '10' experimental: false coverage: false exclude_group: WithoutSchema,forPHP8 - operating_system: 'ubuntu-latest' php_versions: '7.4' - postgres: '13' + postgres: '11' experimental: false coverage: false exclude_group: WithoutSchema,forPHP8 - operating_system: 'ubuntu-latest' php_versions: '8.0' - postgres: '10' + postgres: '12' experimental: false coverage: false exclude_group: WithoutSchema,forPHP7 - operating_system: 'ubuntu-latest' php_versions: '8.0' - postgres: '11' + postgres: '13' experimental: false coverage: false exclude_group: WithoutSchema,forPHP7 - operating_system: 'ubuntu-latest' php_versions: '8.0' - postgres: '12' - experimental: false - coverage: true - exclude_group: WithoutSchema,forPHP7 - - operating_system: 'ubuntu-latest' - php_versions: '8.0' - postgres: '13' + postgres: '14' coverage: false experimental: false exclude_group: WithoutSchema,forPHP7 - operating_system: 'ubuntu-latest' php_versions: '8.1' - postgres: '14' + postgres: '15' coverage: false experimental: false exclude_group: WithoutSchema,forPHP7 - operating_system: 'ubuntu-latest' php_versions: '8.2' - postgres: '15' + postgres: '16' coverage: false - experimental: false + experimental: true exclude_group: WithoutSchema,forPHP7 + - operating_system: 'ubuntu-latest' + php_versions: '8.3' + postgres: '16' + coverage: false + experimental: true + exclude_group: forPHP7 runs-on: '${{ matrix.operating_system }}' services: postgres: diff --git a/composer.json b/composer.json index 9c901b3..92dd4d1 100644 --- a/composer.json +++ b/composer.json @@ -34,13 +34,13 @@ }, "require": { "ext-pdo": "*", - "php": "^7.2|^7.3|^7.4|^8.0|^8.1|^8.2", + "php": "^7.2|^7.3|^7.4|^8.0|^8.1|^8.2|^8.3", "doctrine/dbal": "^2.9|^3.0", "laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0" }, "require-dev": { "umbrellio/code-style-php": "^1.0", - "orchestra/testbench": "^3.5|^6.0|^4.0|^7.0|^8.0|^9.0", + "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0", "php-coveralls/php-coveralls": "^2.1|^2.7", "codeception/codeception": "^3.0|^4.0|^5.0", "phpunit/phpunit": "^9.6|^10.0|^11.0"