diff --git a/CHANGELOG.md b/CHANGELOG.md index 5311866..3af1a5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.2.1] - 2026-07-20 + +### Changed +- Update composer.json to support Laravel 12 + ## [1.2.0] - 2026-07-04 ### Added diff --git a/composer.json b/composer.json index 2add7de..58cbfd1 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "A flexible plugin engine for Laravel applications", "type": "library", "license": "proprietary", - "version": "1.2.0", + "version": "1.2.1", "autoload": { "psr-4": { "WhileSmart\\LaravelPluginEngine\\": "src/" @@ -23,10 +23,10 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^11.0", - "illuminate/console": "^11.0", - "illuminate/filesystem": "^11.0", - "illuminate/database": "^11.45" + "illuminate/support": "^11.0|^12.0", + "illuminate/console": "^11.0|^12.0", + "illuminate/filesystem": "^11.0|^12.0", + "illuminate/database": "^11.45|^12.0" }, "require-dev": { "orchestra/testbench": "^9.0",