Skip to content

Commit

Permalink
Support for Laravel 6 (#5)
Browse files Browse the repository at this point in the history
Support for Laravel 6
  • Loading branch information
craigsansam authored Nov 22, 2019
2 parents a8f98cd + a5fd6f5 commit 94ecaa4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
language: php

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm

before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
- composer install --prefer-source --no-interaction

script:
- phpunit --coverage-text
- vendor/bin/phpunit --coverage-text

matrix:
allow_failures:
- php: hhvm
- php: hhvm
8 changes: 3 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"laravel",
"title",
"page"

],
"authors": [
{
Expand All @@ -16,8 +15,8 @@
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0"
"php": ">=5.6.0",
"illuminate/support": "^5.0|^6.0"
},
"require-dev": {
"mockery/mockery": "~0.9.",
Expand All @@ -27,6 +26,5 @@
"psr-4": {
"Radiula\\Title\\": "src/"
}
},
"minimum-stability": "stable"
}
}

0 comments on commit 94ecaa4

Please sign in to comment.