Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
},
Expand Down