Skip to content

Commit c6bd4b9

Browse files
committed
StyleCI changes / Readme / Changelog
1 parent df99012 commit c6bd4b9

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
build
33
composer.phar
44
composer.lock
5+
.idea

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `Messagebird` will be documented in this file
44

5+
## 3.0.0 - 2019-09-18
6+
7+
- Laravel 8 support
8+
59
## 1.0.0 - 2016-08-27
610

7-
- initial release
11+
- initial release

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Messagebird notifications channel for Laravel 5.x, 6 & 7
1+
# Messagebird notifications channel for Laravel
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/messagebird.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/messagebird)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
@@ -9,7 +9,7 @@
99
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/messagebird/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/messagebird/?branch=master)
1010
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/messagebird.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/messagebird)
1111

12-
This package makes it easy to send [Messagebird SMS notifications](https://github.com/messagebird/php-rest-api) with Laravel 5.x, 6 & 7.
12+
This package makes it easy to send [Messagebird SMS notifications](https://github.com/messagebird/php-rest-api) with Laravel.
1313

1414
## Contents
1515

tests/MessagebirdChannelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
use Mockery;
66
use GuzzleHttp\Client;
7-
use PHPUnit\Framework\TestCase;
87
use Illuminate\Notifications\Notifiable;
98
use Illuminate\Notifications\Notification;
109
use NotificationChannels\Messagebird\MessagebirdClient;
1110
use NotificationChannels\Messagebird\MessagebirdChannel;
1211
use NotificationChannels\Messagebird\MessagebirdMessage;
12+
use PHPUnit\Framework\TestCase;
1313

1414
class MessagebirdChannelTest extends TestCase
1515
{

tests/MessagebirdClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
use Mockery;
66
use GuzzleHttp\Client;
7-
use PHPUnit\Framework\TestCase;
87
use NotificationChannels\Messagebird\MessagebirdClient;
98
use NotificationChannels\Messagebird\MessagebirdMessage;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class MessagebirdClientTest extends TestCase
1212
{

tests/MessagebirdMessageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace NotificationChannels\Messagebird\Test;
44

5-
use PHPUnit\Framework\TestCase;
65
use NotificationChannels\Messagebird\MessagebirdMessage;
6+
use PHPUnit\Framework\TestCase;
77

88
class MessagebirdMessageTest extends TestCase
99
{

0 commit comments

Comments
 (0)