From da47158c892f2bf256f3bf179bdeb785f0addd8c Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Mon, 29 Jun 2026 07:58:06 -0400 Subject: [PATCH] chore: drop Laravel 11 support --- .github/workflows/main.yml | 2 +- README.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4351e7d..2f26d9f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: fail-fast: true matrix: php: [8.2, 8.3, 8.4, 8.5] - laravel: [11.0, 12.0, 13.0] + laravel: [12.0, 13.0] exclude: - php: 8.2 laravel: 13.0 diff --git a/README.md b/README.md index 201db6a..295da91 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ SOAP is old, but still used. Soapy is modern, but feature limited to fit our use Heavily inspired by [artisaninweb/laravel-soap](https://github.com/artisaninweb/laravel-soap). ### Install -This package is currently supporting Laravel 11.x and 12.x. +This package is currently supporting Laravel 12.x & 13.x ```shell composer require sourcetoad/soapy diff --git a/composer.json b/composer.json index 2ba96f6..228cb59 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "php": "^8.2||^8.3||^8.4||^8.5", "ext-simplexml": "*", "ext-soap": "*", - "illuminate/support": "^11.0|^12.0|^13.0" + "illuminate/support": "^12.0|^13.0" }, "require-dev": { "orchestra/testbench": "^9.2|^10.0|^11.0",