From e7d637e448cbb2adb84c878636aa7f585e56cd4b Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 05:09:19 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 12 --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 2c53119..7f6bff9 100644 --- a/composer.json +++ b/composer.json @@ -25,17 +25,17 @@ "require": { "php": "^8.0", "ext-openssl": "*", - "illuminate/contracts": "^9.0|^10.0|^11.0", - "illuminate/database": "^9.0|^10.0|^11.0", - "illuminate/support": "^9.0|^10.0|^11.0", - "illuminate/validation": "^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0", + "illuminate/database": "^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0", + "illuminate/validation": "^9.0|^10.0|^11.0|^12.0", "spatie/laravel-package-tools": "^1.14.1" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.4", - "orchestra/testbench": "^7.0|^8.0|^9.0", - "phpunit/phpunit": "^9.5|^10.5", - "vimeo/psalm": "^4.20|^5.22" + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpunit/phpunit": "^9.5|^10.5|^11.5.3", + "vimeo/psalm": "^4.20|^5.22|^6.7" }, "autoload": { "psr-4": { From 25752f2b45c265caad8ddca37d888ebb31c5360f Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 05:09:19 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d67827d..7b4286b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -2,19 +2,22 @@ name: run-tests on: push: - branches: [main] + branches: + - main pull_request: - branches: [main] + branches: + - main jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] php: [8.3, 8.2, 8.1, 8.0] - laravel: [11.*, 10.*, 9.*] + laravel: ['9.*', '10.*', '11.*', '12.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 11.* @@ -33,6 +36,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.stability }} - ${{ matrix.os }}