From 4413af97531b9a76e6a085704a5098c3bcc53ee3 Mon Sep 17 00:00:00 2001 From: Mateus Junges Date: Tue, 12 Mar 2024 10:52:24 -0300 Subject: [PATCH 1/3] Support php 8.2 and 8.3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index dd9235c..da96129 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ } ], "require": { - "php": "^7.4|^8.0|^8.1", + "php": "^7.4|^8.0|^8.1|^8.2|^8.3", "stripe/stripe-php": ">=5.0" }, "require-dev": { From 6971deb9edec3e9bb5ce58266fdeee2f4fd5f7ec Mon Sep 17 00:00:00 2001 From: Mateus Junges Date: Tue, 12 Mar 2024 10:52:47 -0300 Subject: [PATCH 2/3] Adds laravel 10 and 11 to test matrix --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c60dd81..9430b00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,8 +16,8 @@ jobs: strategy: max-parallel: 1 matrix: - php: [7.4, 8.0, 8.1] - laravel: [8.*, 9.*] + php: [7.4, 8.0, 8.1, 8.2, 8.3] + laravel: [8.*, 9.*, 10.*, 11.*] include: - php: 7.4 laravel: 8.* @@ -42,6 +42,10 @@ jobs: exclude: - php: 7.4 laravel: 9.* + - php: 8.2 + laravel: 8.* + - php: 8.2 + laravel: 9.* services: stripemock: image: stripe/stripe-mock:v0.141.0 From 8df24609958ee019d13b9076f0571e3ccf95ee87 Mon Sep 17 00:00:00 2001 From: Mateus Junges Date: Tue, 12 Mar 2024 10:56:24 -0300 Subject: [PATCH 3/3] wip --- .github/workflows/test.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9430b00..40b0133 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,27 +18,6 @@ jobs: matrix: php: [7.4, 8.0, 8.1, 8.2, 8.3] laravel: [8.*, 9.*, 10.*, 11.*] - include: - - php: 7.4 - laravel: 8.* - testbench: 6.* - phpunit: 9.* - - php: 8.0 - laravel: 8.* - testbench: 6.* - phpunit: 9.* - - php: 8.1 - laravel: 8.* - testbench: 6.* - phpunit: 9.* - - php: 8.0 - laravel: 9.* - testbench: 7.* - phpunit: 9.* - - php: 8.1 - laravel: 9.* - testbench: 7.* - phpunit: 9.* exclude: - php: 7.4 laravel: 9.*