diff --git a/README.md b/README.md index f28416e..a23f8df 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,16 @@ [![StyleCI](https://styleci.io/repos/38935942/shield)](https://styleci.io/repos/38935942) [![Total Downloads](https://img.shields.io/packagist/dt/uxweb/sweet-alert.svg?style=flat-square)](https://packagist.org/packages/uxweb/sweet-alert) +## Introduction + +This package is a fork of [uxweb/sweet-alert](https://github.com/uxweb/sweet-alert). We have added updates specifically for Laravel 9 and 10 compatibility. All rights and credits belong to the original package [uxweb/sweet-alert](https://github.com/uxweb/sweet-alert). + ## Installation Require the package using Composer. ```bash -composer require uxweb/sweet-alert +composer require mr-mokhtari/sweet-alert ``` If using laravel < 5.5 include the service provider and alias within `config/app.php`. diff --git a/composer.json b/composer.json index 0d663aa..31f2b7e 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "uxweb/sweet-alert", + "name": "mr-mokhtari/sweet-alert", "description": "A simple PHP package to show Sweet Alerts with the Laravel Framework", "keywords": [ "laravel", @@ -15,12 +15,12 @@ } ], "require": { - "php": ">=7.0", - "illuminate/support": "~5.0|^6.0|^7.0|^8.0", - "illuminate/session": "~5.0|^6.0|^7.0|^8.0" + "php": ">=7.0|^8.0", + "illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/session": "~5.0|^6.0|^7.0|^8.0|^9.0|^10.0" }, "require-dev": { - "phpunit/phpunit": "^7.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0|^9.0", "mockery/mockery": "^1.0", "friendsofphp/php-cs-fixer": "^2.16" },