Skip to content

Commit

Permalink
Fix tests and support Laravel 6
Browse files Browse the repository at this point in the history
  • Loading branch information
Torann committed Nov 13, 2019
1 parent d965b74 commit 812a6a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

before_script:
- composer self-update
- composer install --prefer-source --no-interaction
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev

script:
- phpunit
script: php ./vendor/bin/phpunit
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.1",
"illuminate/database": "~5.1"
"php": ">=5.6",
"illuminate/support": "~5.1|~6.0",
"illuminate/database": "~5.1|~6.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
Expand Down

0 comments on commit 812a6a6

Please sign in to comment.