From 8b0d0d5a4c3084d9d453295cfc0d4a7c87e4e891 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 16 Feb 2025 22:07:27 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 12 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 04e5100..a9cedda 100644 --- a/composer.json +++ b/composer.json @@ -18,16 +18,16 @@ "require": { "php": "^8.2|^8.3|^8.4", "graham-campbell/security-core": "^4.0", - "illuminate/contracts": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0|^12.0", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { "laravel/pint": "^1.14", "nunomaduro/collision": "^7.0|^8.0", - "orchestra/testbench": "^8.0|^9.0", - "pestphp/pest": "^2.0", - "pestphp/pest-plugin-laravel": "^2.0", - "phpunit/phpunit": "^10.4" + "orchestra/testbench": "^8.0|^9.0|^10.0", + "pestphp/pest": "^2.0|^3.7", + "pestphp/pest-plugin-laravel": "^2.0|^3.1", + "phpunit/phpunit": "^10.4|^11.5.3" }, "autoload": { "psr-4": { @@ -59,4 +59,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +} From fe05855c4c957eecd7efe3a5b4f9fc642fe5e7c9 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 16 Feb 2025 22:07:28 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1bbbf67..4051450 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,13 +17,15 @@ jobs: matrix: os: [ubuntu-latest] php: [8.4, 8.3, 8.2] - laravel: ["10.*", "11.*"] + laravel: ['10.*', '11.*', '12.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: ^8.0 - laravel: 11.* testbench: ^9.0 + - laravel: 12.* + testbench: ^10.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}