From dc50f0b467fe4bbdf2218d8b128f14d4913f958d Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 07:00:08 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 11 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index aea3b21..8fd3889 100644 --- a/composer.json +++ b/composer.json @@ -28,14 +28,14 @@ }, "require": { "php": "^7.2 || ^8.0", - "illuminate/cache": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", - "illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", - "illuminate/database": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" + "illuminate/cache": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "illuminate/database": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0" }, "require-dev": { - "illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", - "orchestra/testbench": "3.8.* || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "phpunit/phpunit": "^8.3 || ^9.0" + "illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "orchestra/testbench": "3.8.* || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0", + "phpunit/phpunit": "^8.3 || ^9.0 || ^10.5" }, "prefer-stable": true, "autoload": { From 96df9097e89baef03734772ba9b8d1063ddfa9c5 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 07:00:09 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/run-tests.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index af5e228..3ee678d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,8 +11,8 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 7.4, 7.3, 7.2] - laravel: [8.*, 7.*, 6.*, 5.8.*] + php: [7.2, 7.3, 7.4, 8.0, '8.2'] + laravel: ['5.8.*', '6.*', '7.*', '8.*', '11.*'] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 8.* @@ -23,6 +23,8 @@ jobs: testbench: 4.* - laravel: 5.8.* testbench: 3.8.* + - laravel: 11.* + testbench: 9.* exclude: - php: 8.0 laravel: 5.8.* @@ -32,6 +34,14 @@ jobs: laravel: 8.* - php: 7.2 laravel: 8.* + - laravel: 11.* + php: 7.2 + - laravel: 11.* + php: 7.3 + - laravel: 11.* + php: 7.4 + - laravel: 11.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}