From 0ff3fad870f2b880e3821db13401cb6a3d21c744 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 15:55:37 +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 3990258..9fbb442 100644 --- a/composer.json +++ b/composer.json @@ -13,12 +13,12 @@ "require": { "php": "^8.1", "edamov/pushok": "^0.16", - "illuminate/cache": "^9.0|^10.0", - "illuminate/config": "^9.0|^10.0", - "illuminate/events": "^9.0|^10.0", - "illuminate/notifications": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", - "nesbot/carbon": "^2.66" + "illuminate/cache": "^9.0|^10.0|^11.0", + "illuminate/config": "^9.0|^10.0|^11.0", + "illuminate/events": "^9.0|^10.0|^11.0", + "illuminate/notifications": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.66|^3.0" }, "require-dev": { "mockery/mockery": "^1.5.1", From 6c03f546dfa834a475ac85bff551d66ded33d28f Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 15:55:37 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/run-tests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0ad83eb..79faee3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,17 +1,22 @@ name: test -on: [push] +on: + - push jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: false matrix: os: [ubuntu-latest] php: [8.1, 8.2] - laravel: [9.*, 10.*] + laravel: ['9.*', '10.*', '11.*'] stability: [prefer-lowest, prefer-stable] + exclude: + - laravel: 11.* + php: 8.1 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}