Skip to content

Commit

Permalink
Merge branch '2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Aug 23, 2019
2 parents 7902875 + 0afab7f commit fe36ebd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ php:
env:
matrix:
- LARAVEL=5.8.*
- LARAVEL=dev-master
- LARAVEL=^6.0
- LARAVEL=^7.0

matrix:
fast_finish: true
exclude:
- php: 7.1
env: LARAVEL=dev-master
env: LARAVEL=^6.0
- php: 7.1
env: LARAVEL=^7.0
allow_failures:
- env: LARAVEL=dev-master
- env: LARAVEL=^7.0

before_install:
- phpenv config-rm xdebug.ini || true
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
],
"require": {
"php": "^7.1.3",
"illuminate/notifications": "~5.8.0|^6.0",
"illuminate/notifications": "~5.8.0|^6.0|^7.0",
"nexmo/client": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/NotificationNexmoChannelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class NotificationNexmoChannelTest extends TestCase
{
public function tearDown()
protected function tearDown(): void
{
m::close();
}
Expand Down

0 comments on commit fe36ebd

Please sign in to comment.