From 542a5c2aa1cae4f9ff1ada71fa415c0cb17c6cdd Mon Sep 17 00:00:00 2001 From: William Hall Date: Wed, 13 Mar 2024 11:22:51 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20update=20to=20laravel=2011?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 7 +++++-- composer.json | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4036390..2861021 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,11 +8,14 @@ jobs: strategy: fail-fast: false matrix: - laravel: [10] + laravel: [10, 11] php: [8.1, 8.2, 8.3] + exclude: + - php: 8.1 + laravel: 11 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }} diff --git a/composer.json b/composer.json index cdffe2c..1df2958 100644 --- a/composer.json +++ b/composer.json @@ -10,12 +10,12 @@ "license": "MIT", "require": { "php": "^8.0", - "laravel/framework": "^9.0.1|^10.0", + "laravel/framework": "^9.0.1|^10.0|^11.0", "postal/postal": "^2.0.1" }, "require-dev": { "phpunit/phpunit": "^10.0", - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^8.0|^9.0", "nunomaduro/larastan": "^2.0" }, "autoload": {