Skip to content

Commit fa1d937

Browse files
authored
Merge pull request #7 from binary-cats/v1.1.0
Add support for Laravel 7
2 parents 99f6d3b + 01198e0 commit fa1d937

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ matrix:
2323
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-lowest'
2424
- php: 7.3
2525
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-stable'
26+
- php: 7.3
27+
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
2628

2729
before_install:
2830
- travis_retry composer self-update

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-mailgun-webhooks` will be documented in this file
44

5+
## 1.1.0 - 2020-03-04
6+
7+
- add support for Laravel 7
8+
59
## 1.0.0 - 2019-12-10
610

711
- initial release

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^7.2",
22-
"illuminate/support": "~5.8.0|^6.0",
22+
"illuminate/support": "~5.8.0|^6.0|^7.0",
2323
"spatie/laravel-webhook-client": "^2.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "~3.8.0|^4.0",
27-
"phpunit/phpunit": "^8.2"
26+
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
27+
"phpunit/phpunit": "^8.2|^9.0"
2828
},
2929
"autoload": {
3030
"psr-4": {

0 commit comments

Comments
 (0)