From cef2087fd1f164a25ddb173e9cbec40531c693f3 Mon Sep 17 00:00:00 2001 From: Christophe Tremblay Date: Thu, 23 Sep 2021 09:14:50 -0400 Subject: [PATCH 1/3] Dropped support for php 7.2 Ref #33324 --- .github/workflows/tests.yml | 7 ++----- composer.json | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7787a3d..71c956d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, 8.0] + php: [7.3, 7.4, 8.0] laravel: [6.*, 7.*, 8.*] dependency-version: [prefer-lowest, prefer-stable] include: @@ -18,10 +18,7 @@ jobs: - laravel: 7.* testbench: 5.* - laravel: 6.* - testbench: 4.* - exclude: - - php: 7.2 - laravel: 8.* + testbench: 4.*s name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index a45323f..c2a266c 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": ">=7.2", + "php": "^7.3", "illuminate/support": "^6.0|^7.0|^8.0", "laravelcollective/html": "^6.0" }, From 1eba2bebdeedb4a872da5c26eab2114624023e4e Mon Sep 17 00:00:00 2001 From: Christophe Tremblay Date: Thu, 23 Sep 2021 09:37:08 -0400 Subject: [PATCH 2/3] fixed typo --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 71c956d..a9c9ab5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: - laravel: 7.* testbench: 5.* - laravel: 6.* - testbench: 4.*s + testbench: 4.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} From 7cad73a59d5b4425df0190065794085557acee01 Mon Sep 17 00:00:00 2001 From: Christophe Tremblay Date: Thu, 23 Sep 2021 09:39:14 -0400 Subject: [PATCH 3/3] Added support for php 8.0 Ref #33326 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index c2a266c..d19fe46 100644 --- a/composer.json +++ b/composer.json @@ -21,12 +21,12 @@ } ], "require": { - "php": "^7.3", + "php": "^7.3|^8.0", "illuminate/support": "^6.0|^7.0|^8.0", "laravelcollective/html": "^6.0" }, "require-dev": { - "mockery/mockery": "^1.3", + "mockery/mockery": "^1.4.3", "phpunit/phpunit": "^8.0", "orchestra/testbench" : "^4.0|^5.0|^6.0", "squizlabs/php_codesniffer": "^3.6.0"