Skip to content

Commit 9dc5f72

Browse files
committed
Add Laravel 5.4 compatibility
1 parent 3b0c60f commit 9dc5f72

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

3-
All Notable changes to `:package_name` will be documented in this file
3+
All Notable changes to `laravel-notification-channels/webpus` will be documented in this file
44

5-
## 1.0.0 - 201X-XX-XX
5+
## 0.2.0 - 2017-01-26
66

7-
- initial release
7+
- Added Laravel 5.4 compatibility.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Web push notifications channel for Laravel 5.3
1+
# Web push notifications channel for Laravel
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/webpush.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/webpush)
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/webpush/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/webpush/?branch=master)
1010
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/webpush.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/webpush)
1111

12-
This package makes it easy to send web push notifications with Laravel 5.3.
12+
This package makes it easy to send web push notifications with Laravel.
1313

1414

1515
## Installation

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
],
1414
"require": {
1515
"php": ">=5.6.4",
16-
"illuminate/notifications": "5.3.*",
17-
"illuminate/support": "5.1.*|5.2.*|5.3.*",
16+
"illuminate/notifications": "5.3.*|5.4.*",
17+
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*",
1818
"minishlink/web-push": "1.1.*"
1919
},
2020
"require-dev": {
2121
"mockery/mockery": "^0.9.5",
22-
"phpunit/phpunit": "4.*",
23-
"orchestra/testbench": "3.3.*"
22+
"phpunit/phpunit": "~5.7",
23+
"orchestra/testbench": "3.4.*"
2424
},
2525
"autoload": {
2626
"psr-4": {
@@ -35,6 +35,7 @@
3535
"config": {
3636
"sort-packages": true
3737
},
38+
"minimum-stability": "dev",
3839
"prefer-stable": true,
3940
"scripts": {
4041
"test": "vendor/bin/phpunit"

0 commit comments

Comments
 (0)