Skip to content

Commit 75edb39

Browse files
committed
Laravel 5.6
1 parent 27fc509 commit 75edb39

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 5.6
55
- 7.0
66
- 7.1
7+
- 7.2
78

89
env:
910
matrix:
@@ -18,5 +19,5 @@ script:
1819
- phpunit --coverage-text --coverage-clover=coverage.clover
1920

2021
after_script:
21-
- if [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
22-
- if [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
22+
- wget https://scrutinizer-ci.com/ocular.phar
23+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Discord notification channel for Laravel 5.3
1+
# Discord notification channel for Laravel 5.1 to 5.6
22

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

11-
This package makes it easy to send notifications using the [Discord bot API](https://discordapp.com/developers/docs/intro) with Laravel 5.3.
11+
This package makes it easy to send notifications using the [Discord bot API](https://discordapp.com/developers/docs/intro) with Laravel.
1212

1313
## Contents
1414

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
"require": {
2121
"php": ">=5.6.4",
2222
"guzzlehttp/guzzle": "~6.0",
23-
"illuminate/notifications": "5.3.*|5.4.*|5.5.*",
24-
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
25-
"illuminate/queue": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
26-
"illuminate/console": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
23+
"illuminate/notifications": "5.3.*|5.4.*|5.5.*|5.6.*",
24+
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
25+
"illuminate/queue": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
26+
"illuminate/console": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
2727
"textalk/websocket": "1.0.*"
2828
},
2929
"require-dev": {
3030
"mockery/mockery": "^0.9.5",
31-
"orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.3.x-dev",
32-
"laravel/framework": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
31+
"orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*|3.5.*|3.6.*|3.6.x-dev",
32+
"laravel/framework": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
3333
"phpunit/phpunit": "4.*",
34-
"orchestra/database": "3.3.x-dev"
34+
"orchestra/database": "3.6.x-dev"
3535
},
3636
"autoload": {
3737
"psr-4": {

0 commit comments

Comments
 (0)