Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 0ac6a67

Browse files
laravel 5.5 support
1 parent f8073b4 commit 0ac6a67

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ matrix:
1414
env: ILLUMINATE_VERSION=5.4.*
1515
- php: 7.0
1616
env: ILLUMINATE_VERSION=5.4.*
17+
- php: 7.0
18+
env: ILLUMINATE_VERSION=5.5.*
1719
- php: 7.1
1820
env: ILLUMINATE_VERSION=5.4.*
21+
- php: 7.1
22+
env: ILLUMINATE_VERSION=5.5.*
1923

2024
before_install:
2125
- composer require "illuminate/database:${ILLUMINATE_VERSION}" --no-update -v

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"description": "A package to override Laravel migrations to more efficiently store UUID fields in your database",
44
"type": "utility",
55
"require": {
6-
"php": ">=5.6.4",
7-
"illuminate/container": "5.4.*",
8-
"illuminate/database": "5.4.*"
6+
"php": ">=5.6.4 || >= 7.0",
7+
"illuminate/container": "5.4.* || 5.5.*",
8+
"illuminate/database": "5.4.* || 5.5.*"
99
},
1010
"require-dev": {
1111
"phpunit/phpunit": "~5.7",

0 commit comments

Comments
 (0)