diff --git a/README.md b/README.md index c126b1d..6e63cdc 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,13 @@ This package contains several solutions. Pick and use the one which fits your needs. -Current version: 0.0.2 (pre-release) +Current version: 0.0.3 (pre-release) ## Installation 1. Add this line to your 'composer.json` -`"unrulynatives/attitudes": "0.0.2"` +`"unrulynatives/attitudes": "0.0.3"` 2. register the service provider in `config/app.php`. diff --git a/composer.json b/composer.json index e0744b7..cf362e0 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { - "name":"unrulynatives/helpers", - "description":"Laravel 5 helpers to use across all Laravel projects", + "name":"unrulynatives/attitudes", + "description":"Laravel 5 Upvote/Downvote system", "keywords":[ "laravel", "laravel5", @@ -17,8 +17,7 @@ ], "require":{ "php":">=5.4.0", - "illuminate/support":"~5.0", - "thomaswelton/gravatarlib":"0.1.x" + "illuminate/support":"5.3.0" }, "require-dev":{ "phpunit/phpunit":"4.8.*", @@ -26,6 +25,8 @@ }, "autoload": { "psr-4": { + "App\\": "app/", + "Unrulynatives\\Attitudes\\": "src/" } },