From 03642d0f685f45c276252b5d1e249b4d90577d1b Mon Sep 17 00:00:00 2001 From: atymic Date: Thu, 5 Mar 2020 22:04:02 +1100 Subject: [PATCH] feat: support laravel 7 (#6) --- .travis.yml | 1 + README.md | 2 +- composer.json | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9b4c528..c52e51d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: php php: - 7.2 - 7.3 + - 7.4 env: matrix: diff --git a/README.md b/README.md index e6b879d..f215e51 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/composer.json b/composer.json index 6414514..33ea0db 100644 --- a/composer.json +++ b/composer.json @@ -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": {