From ebc48b7a37b697f487c119ee321627702fb008e0 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 16 Feb 2025 23:17:56 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 12 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 2acac00..bb4e5a0 100644 --- a/composer.json +++ b/composer.json @@ -19,15 +19,15 @@ ], "require": { "php": "^8.0", - "illuminate/support": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0", "league/openapi-psr7-validator": "^0.14|^0.15|^0.16|^0.17|^0.18|^0.19|^0.20|^0.21|^0.22", "nyholm/psr7": "^1.3", "symfony/psr-http-message-bridge": "^2.0|^7.0" }, "require-dev": { - "orchestra/testbench": "7.*|^8.0|^9.0", + "orchestra/testbench": "7.*|^8.0|^9.0|^10.0", "mockery/mockery": "^1.3.1", - "phpunit/phpunit": "^9.0|^10.5", + "phpunit/phpunit": "^9.0|^10.5|^11.5.3", "fakerphp/faker": "^1.9.1" }, "autoload": { From 0e6bf2a00c3c834bb30050117d8c66c87ea780eb Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 16 Feb 2025 23:17:56 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b6d456..050587f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: fail-fast: true matrix: php: [8.0, 8.1, 8.2] - laravel: ['9.*', '10.*', '11.*'] + laravel: ['9.*', '10.*', '11.*', '12.*'] include: - laravel: 11.* testbench: 9.* @@ -19,6 +19,8 @@ jobs: testbench: 8.* - laravel: 9.* testbench: 7.* + - laravel: 12.* + testbench: 10.* exclude: - php: 8.0 laravel: 10.* @@ -26,6 +28,10 @@ jobs: php: 8.0 - laravel: 11.* php: 8.1 + - laravel: 12.* + php: 8.0 + - laravel: 12.* + php: 8.1 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}