Skip to content

Commit 02f3b72

Browse files
authored
Merge pull request #8 from codebyray/master
Merged master to develop branch
2 parents d3062ec + 14f38c9 commit 02f3b72

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ CHANGELOG
33

44
This changelog contains all notable change of the laravel-review-rateable package
55

6-
6-19-2019 - Added Laravel 5.8 support
6+
6-19-2019 - Added Laravel 5.8 support
7+
8+
9-05-2019 - Added Laravel 6.0 support
9+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Laravel Review Rateable
2-
Review Rateable system for laravel 5. You can rate your models by:
2+
Review Rateable system for laravel 5. and 6. You can rate your models by:
33
- Overall Rating
44
- Customer Service Rating
55
- Quality Rating
@@ -60,7 +60,7 @@ $user = User::first();
6060
$post = Post::first();
6161

6262
$rating = $post->rating([
63-
title' => 'This is a test title',
63+
'title' => 'This is a test title',
6464
'body' => 'And we will add some shit here',
6565
'customer_service_rating' => 5,
6666
'quality_rating' => 5,

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
],
1212
"minimum-stability": "dev",
1313
"require": {
14-
"php" : "^7.1",
15-
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
16-
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0"
14+
"php" : "^7.2",
15+
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0",
16+
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "^6.3|^7.0",
20-
"orchestra/testbench": "~3.5.0|~3.6.0"
19+
"phpunit/phpunit": "^6.3|^7.0|^8.0",
20+
"orchestra/testbench": "~3.5.0|~3.6.0|^4.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)