diff --git a/README.md b/README.md index 13879c3..44c8ecb 100644 --- a/README.md +++ b/README.md @@ -6,21 +6,21 @@ It automatically installs git hooks. ## Installation -Edit your `composer.json` file to include the following script and repository: +Edit your `composer.json` file to include the following dependency, script and repository: ``` -"require-dev": { - "bluesquare/hooks": "dev-main" +"require": { + "bluesquare/laravel-hooks": "dev-main" }, "scripts": { "post-autoload-dump": [ - "[ $COMPOSER_DEV_MODE -eq 0 ] || @php artisan hooks:install" + "@php artisan hooks:install --ansi" ], }, "repositories": [ { "type": "vcs", - "url": "https://git.bluesquare.io/bluesquare/hooks.git" + "url": "https://git.bluesquare.io/bluesquare/laravel-hooks.git" } ] ```