From a5995b58b8eb66e5b8f8e0788057d80c09901c4d Mon Sep 17 00:00:00 2001 From: Maxime Renou Date: Fri, 5 Apr 2024 01:54:22 +0200 Subject: [PATCH] fix README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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" } ] ```