From b62d6e87eb240c8cf2a29865d80b01245182314f Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 16 Feb 2025 21:47:01 +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 edbc653..4c90626 100755 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": "^8.1|^8.2|^8.3|^8.4", - "illuminate/contracts": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0|^12.0", "php-ffmpeg/php-ffmpeg": "^1.2", "ramsey/collection": "^2.0" }, @@ -29,8 +29,8 @@ "league/flysystem-memory": "^3.10", "mockery/mockery": "^1.4.4", "nesbot/carbon": "^2.66|^3.0", - "orchestra/testbench": "^8.0|^9.0", - "phpunit/phpunit": "^10.4", + "orchestra/testbench": "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^10.4|^11.5.3", "spatie/image": "^2.2|^3.3", "spatie/phpunit-snapshot-assertions": "^5.0" }, From 6b72895045d5438957c9d63a0e18c9acee5109d9 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 16 Feb 2025 21:47:01 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1ac924e..5b650d6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-20.04] php: [8.4, 8.3, 8.2, 8.1] - laravel: ["10.*", "11.*"] + laravel: ['10.*', '11.*', '12.*'] ffmpeg: [5.0, 4.4] dependency-version: [prefer-lowest, prefer-stable] include: @@ -23,11 +23,15 @@ jobs: testbench: 8.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* exclude: - laravel: 11.* php: 8.1 - laravel: 10.* php: 8.4 + - laravel: 12.* + php: 8.1 name: ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} - FF${{ matrix.ffmpeg }} - ${{ matrix.dependency-version }}