Skip to content

Commit b07981d

Browse files
authored
feat: laravel 7 support (#8)
1 parent f8c0cc5 commit b07981d

File tree

3 files changed

+4
-14
lines changed

3 files changed

+4
-14
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ cache:
77
php:
88
- 7.2
99
- 7.3
10+
- 7.4
1011

1112
env:
1213
matrix:

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![Total Downloads](https://poser.pugx.org/laravel-notification-channels/smsapi/downloads)](https://packagist.org/packages/laravel-notification-channels/smsapi)
1010
[![PHP 7 ready](http://php7ready.timesplinter.ch/laravel-notification-channels/smsapi/badge.svg)](https://travis-ci.org/laravel-notification-channels/smsapi)
1111

12-
This package makes it easy to send notifications using [Smsapi](https://www.smsapi.pl/) with Laravel 5.5+ & 6.x.
12+
This package makes it easy to send notifications using [Smsapi](https://www.smsapi.pl/) with Laravel 5.5+, 6.x, & 7.x
1313

1414
## Contents
1515

@@ -33,17 +33,6 @@ You can install the package via composer:
3333
composer require laravel-notification-channels/smsapi
3434
```
3535

36-
You must install the service provider:
37-
```php
38-
// config/app.php
39-
...
40-
'providers' => [
41-
...
42-
NotificationChannels\Smsapi\SmsapiServiceProvider::class,
43-
],
44-
...
45-
```
46-
4736
You can also publish the config file with:
4837

4938
```bash

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
],
1414
"require": {
1515
"php": ">=7.1",
16-
"illuminate/notifications": "~5.5 || ~6.0",
17-
"illuminate/support": "~5.5 || ~6.0",
16+
"illuminate/notifications": "~5.5 || ~6.0 || ~7.0",
17+
"illuminate/support": "~5.5 || ~6.0 || ~7.0",
1818
"smsapi/php-client": "^1.8"
1919
},
2020
"require-dev": {

0 commit comments

Comments
 (0)