Skip to content

Commit 3859e4f

Browse files
authored
Merge pull request #27 from atymic/support-newer-laravel
chore: support newer laravel versions
2 parents 9557623 + 04d67aa commit 3859e4f

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: php
22

33
php:
4-
- 5.6
5-
- 7.0
6-
- 7.1
4+
- 7.2
5+
- 7.3
76

87
env:
98
matrix:
@@ -15,7 +14,7 @@ before_script:
1514
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
1615

1716
script:
18-
- phpunit --coverage-text --coverage-clover=coverage.clover
17+
- ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
1918

2019
after_script:
2120
- wget https://scrutinizer-ci.com/ocular.phar

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Webhook notifications channel for Laravel 5.3
1+
# Webhook notifications channel for Laravel 5.5+ and 6.0
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/laravel-notification-channels/webhook.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/webhook)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
@@ -9,7 +9,7 @@
99
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/laravel-notification-channels/webhook/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/laravel-notification-channels/webhook/?branch=master)
1010
[![Total Downloads](https://img.shields.io/packagist/dt/laravel-notification-channels/webhook.svg?style=flat-square)](https://packagist.org/packages/laravel-notification-channels/webhook)
1111

12-
This package makes it easy to send webhooks using the Laravel 5.3 notification system.
12+
This package makes it easy to send webhooks using the Laravel notification system.
1313

1414
## Contents
1515

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=5.6.4",
14+
"php": ">=7.0",
1515
"guzzlehttp/guzzle": "~6.0",
16-
"illuminate/notifications": "5.3.*|5.4.*|5.5.*|5.6.*",
17-
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*"
16+
"illuminate/notifications": "~5.5 || ~6.0",
17+
"illuminate/support": "~5.5 || ~6.0"
1818
},
1919
"require-dev": {
2020
"mockery/mockery": "^0.9.5",
21-
"phpunit/phpunit": "4.*|~6.0",
22-
"orchestra/testbench": "3.3.x-dev|^3.5.0",
23-
"orchestra/database": "3.3.x-dev|^3.5.0"
21+
"phpunit/phpunit": "~7.0 || ~8.0",
22+
"orchestra/testbench": "^3.5.0 || ^4.0",
23+
"orchestra/database": "^3.5.0 || ^4.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<logging>
2323
<log type="tap" target="build/report.tap"/>
2424
<log type="junit" target="build/report.junit.xml"/>
25-
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
25+
<log type="coverage-html" target="build/coverage"/>
2626
<log type="coverage-text" target="build/coverage.txt"/>
2727
<log type="coverage-clover" target="build/logs/clover.xml"/>
2828
</logging>

0 commit comments

Comments
 (0)