Skip to content

Commit 03642d0

Browse files
authored
feat: support laravel 7 (#6)
1 parent ea53a59 commit 03642d0

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: php
33
php:
44
- 7.2
55
- 7.3
6+
- 7.4
67

78
env:
89
matrix:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/pagerduty/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/pagerduty/?branch=master)
1010
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/pagerduty.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/pagerduty)
1111

12-
This package makes it easy to send notification events to [PagerDuty](https://www.pagerduty.com) with Laravel 5.5+ & 6.x.
12+
This package makes it easy to send notification events to [PagerDuty](https://www.pagerduty.com) with Laravel 5.5+, 6.x and 7.x
1313

1414
## Contents
1515

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"require": {
1616
"php": ">=7.1",
1717
"guzzlehttp/guzzle": "~6.0",
18-
"illuminate/notifications": "~5.5 || ~6.0",
19-
"illuminate/support": "~5.5 || ~6.0"
18+
"illuminate/notifications": "~5.5 || ~6.0 || ~7.0",
19+
"illuminate/support": "~5.5 || ~6.0 || ~7.0"
2020
},
2121
"require-dev": {
22-
"illuminate/queue": "~5.5 || ~6.0",
22+
"illuminate/queue": "~5.5 || ~6.0 || ~7.0",
2323
"mockery/mockery": "^1.2",
24-
"phpunit/phpunit": "^8.0"
24+
"phpunit/phpunit": "^8.5"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)