From 7cc14365807bd9fa8220316272f80a02550b9830 Mon Sep 17 00:00:00 2001 From: Abdelouahab Djoudi Date: Thu, 5 Sep 2019 18:13:12 +0100 Subject: [PATCH 1/4] upgrade to 6.0 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 92772fe..0dee38d 100644 --- a/composer.json +++ b/composer.json @@ -11,13 +11,13 @@ ], "minimum-stability": "dev", "require": { - "php" : "^7.1", - "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0", - "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0" + "php" : "^7.2", + "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0", + "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0" }, "require-dev": { - "phpunit/phpunit": "^6.3|^7.0", - "orchestra/testbench": "~3.5.0|~3.6.0" + "phpunit/phpunit": "^6.3|^7.0|^8.0", + "orchestra/testbench": "~3.5.0|~3.6.0|^4.0" }, "autoload": { "psr-4": { From 0df2fbbdc29f5a85d70b335903ae5b5bb3c14765 Mon Sep 17 00:00:00 2001 From: Abdelouahab Djoudi Date: Thu, 5 Sep 2019 19:19:39 +0200 Subject: [PATCH 2/4] add 6.0 support --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83c6241..248ced1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,4 +3,7 @@ CHANGELOG This changelog contains all notable change of the laravel-review-rateable package -6-19-2019 - Added Laravel 5.8 support \ No newline at end of file +6-19-2019 - Added Laravel 5.8 support + +9-05-2019 - Added Laravel 6.0 support + From 5cdbe78c32e2ee62dccc7245b6943bd15a00d6c4 Mon Sep 17 00:00:00 2001 From: Abdelouahab Djoudi Date: Thu, 5 Sep 2019 19:21:55 +0200 Subject: [PATCH 3/4] add 6.0 support --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2888648..13f0669 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Laravel Review Rateable -Review Rateable system for laravel 5. You can rate your models by: +Review Rateable system for laravel 5. and 6. You can rate your models by: - Overall Rating - Customer Service Rating - Quality Rating From f89d6eabbd7813f7bbb762ac1a24f4772ce39b31 Mon Sep 17 00:00:00 2001 From: Shreyansh Panchal Date: Mon, 9 Sep 2019 11:40:10 +0530 Subject: [PATCH 4/4] Fixed missing quote --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2888648..2fe59c8 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ $user = User::first(); $post = Post::first(); $rating = $post->rating([ - title' => 'This is a test title', + 'title' => 'This is a test title', 'body' => 'And we will add some shit here', 'customer_service_rating' => 5, 'quality_rating' => 5,