From 914f1ce0e08d6ef453947612bd0aec0efe431728 Mon Sep 17 00:00:00 2001 From: William Hall Date: Wed, 13 Mar 2024 11:21:54 +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 | 6 +++--- 2 files changed, 8 insertions(+), 5 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..55913c0 100644 --- a/composer.json +++ b/composer.json @@ -1,4 +1,4 @@ -{ +#{ "name": "synergitech/laravel-postal", "description": "This library integrates Postal with the standard Laravel mail framework.", "keywords": [ @@ -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": {