From be849619f4706cd3926eb0a164a4dce1696486bb Mon Sep 17 00:00:00 2001 From: mgcodeur Date: Mon, 18 Mar 2024 07:23:29 +0300 Subject: [PATCH 1/4] add laravel11 support --- .github/workflows/run-tests.yml | 2 +- composer.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 46275c0..4cf4f43 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -26,7 +26,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.3, 8.2, 8.1] - laravel: [10.*] + laravel: [10.*,11.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* diff --git a/composer.json b/composer.json index 91b09b2..407da6f 100644 --- a/composer.json +++ b/composer.json @@ -16,15 +16,15 @@ } ], "require": { - "php": "^8.1", + "php": "^8.1||^8.2", "spatie/laravel-package-tools": "^1.14.0", - "illuminate/contracts": "^10.0" + "illuminate/contracts": "^10.0||^11.0" }, "require-dev": { "laravel/pint": "^1.0", - "nunomaduro/collision": "^7.8", + "nunomaduro/collision": "^7.10.0||^8.1.1", "larastan/larastan": "^2.0.1", - "orchestra/testbench": "^8.8", + "orchestra/testbench": "^8.22.0||^9.0.0", "pestphp/pest": "^2.20", "pestphp/pest-plugin-arch": "^2.0", "pestphp/pest-plugin-laravel": "^2.0", From 035f4f3a5202b1e99d885cb2f64e764411f4000c Mon Sep 17 00:00:00 2001 From: mgcodeur Date: Mon, 18 Mar 2024 07:36:34 +0300 Subject: [PATCH 2/4] update workflow run --- .github/workflows/run-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4cf4f43..786c49e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -20,7 +20,7 @@ on: jobs: test: runs-on: ${{ matrix.os }} - timeout-minutes: 5 + timeout-minutes: 10 strategy: fail-fast: true matrix: @@ -32,6 +32,9 @@ jobs: - laravel: 10.* testbench: 8.* carbon: ^2.63 + - laravel: 11.* + testbench: 9.* + carbon: ^2.63 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} From b6d31602732a220c44b387917f4ae63330d13d45 Mon Sep 17 00:00:00 2001 From: mgcodeur Date: Mon, 18 Mar 2024 07:38:06 +0300 Subject: [PATCH 3/4] update workflow run --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 786c49e..6c0b0d0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -25,7 +25,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.3, 8.2] laravel: [10.*,11.*] stability: [prefer-lowest, prefer-stable] include: From 35887de0a2f580595f968df48ce4d7d234777173 Mon Sep 17 00:00:00 2001 From: mgcodeur Date: Mon, 18 Mar 2024 07:46:09 +0300 Subject: [PATCH 4/4] update workflow run --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6c0b0d0..e003808 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -34,7 +34,7 @@ jobs: carbon: ^2.63 - laravel: 11.* testbench: 9.* - carbon: ^2.63 + carbon: ^3.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}