From fd7f0ae604fc6b1901a17b145e4ab0778d5f55eb Mon Sep 17 00:00:00 2001 From: Mateusz Sip Date: Mon, 23 May 2022 10:54:31 +0200 Subject: [PATCH 1/3] Updata jsonpath library to get rid of deprecations, drop php7 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 306670a..0b1a1ff 100644 --- a/composer.json +++ b/composer.json @@ -9,8 +9,8 @@ } ], "require": { - "php": "^7.2 || ^8.0", - "softcreatr/jsonpath": "^0.7.2", + "php": "^8.0", + "softcreatr/jsonpath": "^0.8", "justinrainbow/json-schema": "^5.0" }, "conflict": { From cc84a18d0cfb1126482a5a9b2df5e21103efd414 Mon Sep 17 00:00:00 2001 From: Mateusz Sip Date: Mon, 23 May 2022 11:00:49 +0200 Subject: [PATCH 2/3] Update testing matrix --- .github/workflows/php.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 2381227..69f90d8 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -12,18 +12,9 @@ jobs: build: strategy: matrix: - php: ['7.2', '7.3', '7.4'] + php: ['8.0', '8.1'] phpunit: ['8.0', '9.0'] composer-arg: [''] - include: - - php: '8.0' - phpunit: '9.0' - composer-arg: 'ignore-platform-req=php' - exclude: - - php: '8.0' - phpunit: '8.0' - - php: '7.2' - phpunit: '9.0' runs-on: ubuntu-latest continue-on-error: ${{ matrix.php == '8.0' }} name: PHP ${{ matrix.php }}, PHPUnit ${{ matrix.phpunit }} From 6eca89d25502cf3960be456b817517d50f066fbe Mon Sep 17 00:00:00 2001 From: Mateusz Sip Date: Mon, 23 May 2022 11:02:09 +0200 Subject: [PATCH 3/3] Update testing matrix --- .github/workflows/php.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 69f90d8..2eb1a0e 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,7 +16,6 @@ jobs: phpunit: ['8.0', '9.0'] composer-arg: [''] runs-on: ubuntu-latest - continue-on-error: ${{ matrix.php == '8.0' }} name: PHP ${{ matrix.php }}, PHPUnit ${{ matrix.phpunit }} steps: