From eed04ef271f9c919d66327072be050cd8ae1f9f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vil=C3=A0?= Date: Thu, 10 Feb 2022 16:10:31 +0100 Subject: [PATCH] Laravel 9.x Support (#3) --- README.md | 4 ++-- composer.json | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 87910cc..5ade6cf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Legacy UI Presets with Auth scaffolding for Laravel 8 +# Legacy UI Presets with Auth scaffolding for Laravel 8 & 9 Total Downloads Latest Stable Version @@ -6,7 +6,7 @@ ## Introduction -### This project brings old Auth scaffolding to Laravel 8 for projects that cannot migrate to [Jetstream](https://github.com/laravel/jetstream) +### This project brings old Auth scaffolding to Laravel 8 & 9 for projects that cannot migrate to [Jetstream](https://github.com/laravel/jetstream) > NOTE: Laravel released [laravel/breeze](https://github.com/laravel/breeze), a new scaffolding package that could fit on projects that cannot migrate to Jetstram. I recommend trying it before using this fork. diff --git a/composer.json b/composer.json index f11628e..7192b6a 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "rogervila/laravel-legacy-ui", - "description": "Legacy UI with Auth scaffolding for Laravel 8", + "description": "Legacy UI with Auth scaffolding for Laravel 8.x & 9.x", "keywords": ["laravel", "ui", "legacy", "auth scaffolding"], "license": "MIT", "authors": [{ @@ -9,12 +9,11 @@ }], "require": { "php": "^7.3|^8.0", - "illuminate/console": "^8.0", - "illuminate/filesystem": "^8.0", - "illuminate/support": "^8.0" + "illuminate/console": "^8.0|^9.0", + "illuminate/filesystem": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.16", "mockery/mockery": "^1.0", "phpunit/phpunit": "^9.0" },