From 3bb63493ab1319d76bfc27d07b112cb9676c06bd Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 18 Feb 2025 16:54:42 +0000 Subject: [PATCH 1/3] Bump dependencies for Laravel 12 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 97bd9a8..40b004a 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ ], "require": { "php": "^7.2|^8.0", - "illuminate/support": "^6.0|^7.0|^8.67|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.67|^9.0|^10.0|^11.0|^12.0", "guzzlehttp/guzzle": "^6.5|^7.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.21|^9.0|^9.4.4|^10.5", - "orchestra/testbench": "^4.0|^5.0|^6.0|^8.0|^9.0" + "phpunit/phpunit": "^8.5.21|^9.0|^9.4.4|^10.5|^11.5.3", + "orchestra/testbench": "^4.0|^5.0|^6.0|^8.0|^9.0|^10.0" }, "autoload": { "psr-4": { From 12807cb06438fdae8e9c9b8685e81d7f4a4a9b9f Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 18 Feb 2025 16:54:42 +0000 Subject: [PATCH 2/3] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index a8bbfff..4147851 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.2, 8.1, 8.0] - laravel: ['9.*', '10.*', '11.*'] + laravel: ['9.*', '10.*', '11.*', '12.*'] dependency-version: [prefer-stable] include: - laravel: 10.* @@ -22,6 +22,8 @@ jobs: testbench: 7.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* exclude: - laravel: 10.* php: 8.0 @@ -29,6 +31,10 @@ jobs: php: 8.1 - laravel: 11.* php: 8.0 + - laravel: 12.* + php: 8.1 + - laravel: 12.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} From 1f38d809e65e4535e79dcd1ef9b202b37378f383 Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Fri, 21 Feb 2025 12:29:34 +0100 Subject: [PATCH 3/3] Update run-tests.yml --- .github/workflows/run-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4147851..a6d58a2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: [8.2, 8.1, 8.0] + php: [8.4, 8.3, 8.2, 8.1, 8.0] laravel: ['9.*', '10.*', '11.*', '12.*'] dependency-version: [prefer-stable] include: @@ -57,7 +57,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest - name: Execute tests