From 1d1aca303393e88e3fce6a54dfb8b642d13b285a Mon Sep 17 00:00:00 2001 From: Oleksandr Moik Date: Tue, 8 Jul 2025 10:24:36 +0300 Subject: [PATCH] Support for Laravel 12 --- README.md | 17 +++++++++-------- composer.json | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c6b90ea..3657d20 100755 --- a/README.md +++ b/README.md @@ -11,17 +11,18 @@ For example, you can develop **multiple** themes for your application and easily ## Requirements -This version requires [PHP](https://www.php.net/) 8.1 and supports [Laravel](https://laravel.com/) 10-11. +This version requires [PHP](https://www.php.net/) 8.1 and supports [Laravel](https://laravel.com/) 10-12. This package also provides support for [Laravel Mix](https://laravel-mix.com/) and [Vite](https://vitejs.dev/) configurations. -| Themes | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 | L11 | -|--------|--------------------|--------------------|--------------------|--------------------|--------------------|-----|--------------------|--------------------|--------------------|--------------------| -| 2.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | -| 3.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | -| 4.1 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | -| 5.0 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :x: | -| 5.1 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | +| Themes | Laravel 5.5 | Laravel 5.6 | Laravel 5.7 | Laravel 5.8 | Laravel 6 | Laravel 7 | Laravel 8 | Laravel 9 | Laravel 10 | Laravel 11 | Laravel 12 | +|--------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------| +| 2.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | +| 3.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | +| 4.1 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | +| 5.0 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: | +| 5.1 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | +| 5.2 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | ## Installation diff --git a/composer.json b/composer.json index cc3384b..37cee80 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ ], "require": { "php": "^8.1", - "laravel/framework": "^10.0 | ^11.0" + "laravel/framework": "^10.0 | ^11.0 | ^12.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.38"