Skip to content

Commit

Permalink
feat: support laravel 7 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
atymic authored Mar 5, 2020
1 parent ea53a59 commit 03642d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![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)
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/pagerduty.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/pagerduty)

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

## Contents

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "~6.0",
"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"
},
"require-dev": {
"illuminate/queue": "~5.5 || ~6.0",
"illuminate/queue": "~5.5 || ~6.0 || ~7.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^8.0"
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 03642d0

Please sign in to comment.