From f97c20369a9789385011c24f160d89dbf7fbfaa2 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 16:53:38 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 11 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 6a6e4bf..9f59587 100644 --- a/composer.json +++ b/composer.json @@ -9,11 +9,11 @@ ], "require": { "php": "^7.3|^8.0", - "illuminate/contracts": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "league/iso3166": "^3.0|^4.0" }, "require-dev": { - "orchestra/testbench": "^3.5|^4.0|^5.0|^7.0|^8.0", + "orchestra/testbench": "^3.5|^4.0|^5.0|^7.0|^8.0|^9.0", "phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0" }, "license": "Apache-2.0", From 5696701d1a43b375895a3817536be2b18c5f3cc4 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 16:53:38 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/tests.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4073ab3..cc00cd2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,26 +1,18 @@ -# This is a basic workflow to help you get started with Actions - name: CI -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch on: push: pull_request: -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" tests: - # The type of runner that the job will run on runs-on: ubuntu-latest strategy: matrix: - php: [7.3, 7.4, 8.0] + php: [7.3, 7.4, 8.0, '8.2'] stability: [prefer-lowest, prefer-stable] - # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: Checkout code uses: actions/checkout@v2