Skip to content

Commit

Permalink
feat: support laravel 7 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
atymic authored Mar 7, 2020
1 parent 80b3180 commit 8d54383
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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 @@ -10,7 +10,7 @@
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/lob.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/lob)


This package makes it easy to send notifications using [Lob.com](https://lob.com/) with Laravel 5.5+ & 6.0.
This package makes it easy to send notifications using [Lob.com](https://lob.com/) with Laravel 5.5, 6.x and 7.x

## Contents

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
}
],
"require": {
"php": ">=7.1",
"illuminate/notifications": "~5.5 || ~6.0",
"illuminate/support": "~5.5 || ~6.0",
"illuminate/queue": "~5.5 || ~6.0",
"php": ">=7.2.5",
"illuminate/notifications": "~5.5 || ~6.0 || ~7.0",
"illuminate/support": "~5.5 || ~6.0 || ~7.0",
"illuminate/queue": "~5.5 || ~6.0 || ~7.0",
"lob/lob-php": "^3.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "~7.0 || ~8.0"
"phpunit/phpunit": "~8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 8d54383

Please sign in to comment.