Skip to content

Commit

Permalink
🔖 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarceauKa committed Feb 10, 2023
1 parent 8356e86 commit f434949
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## 2.2.0

- Laravel 8.x, 9.x and 10.x support

## 2.1.0

- Laravel 7.x support

## 2.0.0

- Laravel 6
- Laravel 6
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
}
],
"require": {
"php": "^7.2",
"illuminate/support": "^6.0 | ^7.0",
"guzzlehttp/guzzle": "^6.3"
"php": "^8.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"autoload": {
"psr-4": {
Expand Down
20 changes: 8 additions & 12 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ Attention, Mailjet autorise uniquement les SMS transactionnels.

### Laravel support

| Version | Release |
|:-------------:|:-------------:|
| 6.x, 7.x | 2.1 |
| 6.x | 2.0 |
| 5.8...5.3 | 1.0 |
| Version | Release |
|:--------:|:-------:|
| 8, 9, 10 | 2.2 |
| 6, 7 | 2.1 |
| 6 | 2.0 |
| 5.x | 1.0 |

## Installation

Expand All @@ -34,11 +35,6 @@ Attention, Mailjet autorise uniquement les SMS transactionnels.
composer require lab404/laravel-mailjet-sms
```

- (Facultatif) Ajoutez le ServiceProvider dans **config/app.php** :
```php
Lab404\LaravelMailjetSms\ServiceProvider::class,
```

- (Facultatif) Publiez le fichier de config **mailjetsms** :
```bash
php artisan vendor:publish --provider="Lab404\LaravelMailjetSms\ServiceProvider"
Expand All @@ -65,7 +61,7 @@ public function myMethod(\Lab404\LaravelMailjetSms\MailjetSms $mailjet) {

## Notifications

Ce plugin est compatible avec les [notifications Laravel](https://laravel.com/docs/5.7/notifications).
Ce plugin est compatible avec les [notifications Laravel](https://laravel.com/docs/9.x/notifications).

```php
namespace App\Notifications;
Expand Down Expand Up @@ -120,7 +116,7 @@ N'hésitez pas à utiliser le gestion d'issus pour vos retours.

## Auteur

[Marceau Casals](https://www.404lab.fr)
[Marceau Casals](https://marceau.casals.fr)

## Licence

Expand Down

0 comments on commit f434949

Please sign in to comment.