Skip to content

Commit 76d7dd9

Browse files
Merge pull request #48 from michaeldyrynda/feature/laravel-5.7-support
Add Laravel 5.7 support
2 parents acaf46a + b63e661 commit 76d7dd9

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ matrix:
1010
env: ILLUMINATE_VERSION=5.6.*
1111
- php: 7.2
1212
env: ILLUMINATE_VERSION=5.6.*
13+
- php: 7.1
14+
env: ILLUMINATE_VERSION=5.7.*
15+
- php: 7.2
16+
env: ILLUMINATE_VERSION=5.7.*
1317

1418
before_install: travis_retry composer require "illuminate/database:${ILLUMINATE_VERSION}" "illuminate/events:${ILLUMINATE_VERSION}" --no-update -v
1519

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Laravel Model UUIDs
2-
## v4.0.1
2+
## v4.1.0
33

44
[![Build Status](https://travis-ci.org/michaeldyrynda/laravel-model-uuid.svg?branch=master)](https://travis-ci.org/michaeldyrynda/laravel-model-uuid)
55
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/michaeldyrynda/laravel-model-uuid/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/michaeldyrynda/laravel-model-uuid/?branch=master)
@@ -124,7 +124,7 @@ public function boot()
124124
This package is installed via [Composer](https://getcomposer.org/). To install, run the following command.
125125

126126
```bash
127-
composer require "dyrynda/laravel-model-uuid:~4.0"
127+
composer require "dyrynda/laravel-model-uuid:~4.1"
128128
```
129129
## Support
130130

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">= 7.1.3",
20-
"illuminate/database": "5.6.*",
21-
"illuminate/events": "5.6.*",
22-
"illuminate/support": "5.6.*",
19+
"php": "^7.1.3",
20+
"illuminate/database": "~5.6",
21+
"illuminate/events": "~5.6",
22+
"illuminate/support": "~5.6",
2323
"ramsey/uuid": "~3.7",
2424
"moontoast/math": "^1.1"
2525
},
@@ -29,7 +29,7 @@
2929
}
3030
},
3131
"require-dev": {
32-
"phpunit/phpunit": "~7.0"
32+
"phpunit/phpunit": "^7.0"
3333
},
3434
"autoload-dev": {
3535
"psr-4": {

0 commit comments

Comments
 (0)