From b92a20f710f49788807197047c098a9c1b515945 Mon Sep 17 00:00:00 2001 From: James Hemery Date: Tue, 22 Oct 2019 16:34:26 +0200 Subject: [PATCH] Support for Laravel 6.0 --- .travis.yml | 3 ++- README.md | 2 +- composer.json | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 02d7595..5315d19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: php php: - '7.2' + - '7.3' install: - - composer install \ No newline at end of file + - composer install diff --git a/README.md b/README.md index 15c4fae..26453fe 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # laravel-uuid -Eloquent UUID Trait for Laravel 5.7 and 5.8. +Eloquent UUID Trait for Laravel 5.7, 5.8 and 6.0. [![Travis](https://img.shields.io/travis/JamesHemery/laravel-uuid.svg?style=for-the-badge)](https://travis-ci.org/JamesHemery/laravel-uuid) [![Total Downloads](https://img.shields.io/packagist/dt/jamesh/laravel-uuid.svg?style=for-the-badge)](https://packagist.org/packages/jamesh/laravel-uuid) diff --git a/composer.json b/composer.json index 86e37eb..a13a0e8 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jamesh/laravel-uuid", - "description": "Eloquent UUID Trait for Laravel 5.7 and 5.8.", + "description": "Eloquent UUID Trait for Laravel 5.7, 5.8 and 6.0.", "type": "plugin", "license": "MIT", "authors": [ @@ -12,8 +12,8 @@ "minimum-stability": "stable", "require": { "php" : "^7.2", - "illuminate/support": "~5.7.0|~5.8.0", - "illuminate/database": "~5.7.0|~5.8.0" + "illuminate/support": "^5.7|^5.8|^6.0", + "illuminate/database": "^5.7|^5.8|^6.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0",