From 4734559997ed861dbccd4a5bee6c4d22e7c99c61 Mon Sep 17 00:00:00 2001 From: sundarocs Date: Wed, 13 May 2020 22:21:37 +0530 Subject: [PATCH 1/4] Update composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9d48af2..240e0a5 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,8 @@ "minimum-stability": "dev", "require": { "php" : "^7.2", - "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"|^7.0", - "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0"" + "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0", + "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0" }, "require-dev": { "phpunit/phpunit": "^6.3|^7.0|^8.0", From 0a340375b49b24bc4bad51d8ecdff15ff80b39f0 Mon Sep 17 00:00:00 2001 From: sundarocs Date: Wed, 13 May 2020 22:23:06 +0530 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3539b10..32c2a4c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ You can also set whether the model being rated is recommended. First, pull in the package through Composer. ``` -composer require codebyray/laravel-review-rateable +composer require sundarocs/laravel-review-rateable ``` And then include the service provider within `app/config/app.php`. Note: If you are running Laravel 5.5+ this will be auto loaded for you. From 7b068c17958e31610f0e3e508f8db34b5d2abc62 Mon Sep 17 00:00:00 2001 From: sundarocs Date: Thu, 14 May 2020 01:01:37 +0530 Subject: [PATCH 3/4] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 240e0a5..238292b 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "codebyray/laravel-review-rateable", + "name": "sundarocs/laravel-review-rateable", "description": "Review & Rating system for Laravel 5", "keywords": ["rating", "Ratable", "laravel", "Review-Rateable", "reviewable"], "license": "MIT", From 7a7626e7d3138bf67e14e566de6d358f2ebf8f73 Mon Sep 17 00:00:00 2001 From: sundarocs Date: Thu, 14 May 2020 11:10:25 +0530 Subject: [PATCH 4/4] Laravel 7 support fix --- composer.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 238292b..b7ca27f 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "sundarocs/laravel-review-rateable", + "name": "codebyray/laravel-review-rateable", "description": "Review & Rating system for Laravel 5", "keywords": ["rating", "Ratable", "laravel", "Review-Rateable", "reviewable"], "license": "MIT", @@ -10,10 +10,17 @@ } ], "minimum-stability": "dev", + "repositories": [ + { + "type": "vcs", + "url": "http://github.com/sundarocs/laravel-review-rateable" + } + ], "require": { "php" : "^7.2", "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0", - "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0" + "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0", + "codebyray/laravel-review-rateable": "dev-laravel-version-fix" }, "require-dev": { "phpunit/phpunit": "^6.3|^7.0|^8.0",