Skip to content

Commit

Permalink
feat: laravel 7 support (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
atymic authored Mar 10, 2020
1 parent b725c30 commit 556c843
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: php
php:
- 7.2
- 7.3
- 7.4

env:
matrix:
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/clickatell.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/clickatell)


This package makes it easy to send notifications using [clickatell.com](https://www.clickatell.com/) with Laravel 5.5+ and 6.0
This package makes it easy to send notifications using [clickatell.com](https://www.clickatell.com/) with Laravel 5.5+, 6.x & 7.x.

## Contents

Expand All @@ -34,14 +34,6 @@ You can install the package via composer:
composer require laravel-notification-channels/clickatell
```

In Laravel 5.5+ the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:
```php
'providers' => [
...
NotificationChannels\Clickatell\ClickatellServiceProvider::class,
],
```

### Setting up the clickatell service

Add your Clickatell user, password and api identifier to your `config/services.php`:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
],
"require": {
"php": ">=7.1",
"illuminate/notifications": "~5.5 || ~6.0",
"illuminate/support": "~5.5 || ~6.0",
"illuminate/notifications": "~5.5 || ~6.0 || ~7.0",
"illuminate/support": "~5.5 || ~6.0 || ~7.0",
"arcturial/clickatell": "~2.1"
},
"require-dev": {
Expand Down

0 comments on commit 556c843

Please sign in to comment.