Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
laravel 5.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldyrynda committed Aug 31, 2017
1 parent f8073b4 commit 0ac6a67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ matrix:
env: ILLUMINATE_VERSION=5.4.*
- php: 7.0
env: ILLUMINATE_VERSION=5.4.*
- php: 7.0
env: ILLUMINATE_VERSION=5.5.*
- php: 7.1
env: ILLUMINATE_VERSION=5.4.*
- php: 7.1
env: ILLUMINATE_VERSION=5.5.*

before_install:
- composer require "illuminate/database:${ILLUMINATE_VERSION}" --no-update -v
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"description": "A package to override Laravel migrations to more efficiently store UUID fields in your database",
"type": "utility",
"require": {
"php": ">=5.6.4",
"illuminate/container": "5.4.*",
"illuminate/database": "5.4.*"
"php": ">=5.6.4 || >= 7.0",
"illuminate/container": "5.4.* || 5.5.*",
"illuminate/database": "5.4.* || 5.5.*"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
Expand Down

0 comments on commit 0ac6a67

Please sign in to comment.