fix README
This commit is contained in:
parent
17336c0470
commit
a5995b58b8
10
README.md
10
README.md
|
@ -6,21 +6,21 @@ It automatically installs git hooks.
|
||||||
|
|
||||||
## Installation
|
## 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": {
|
"require": {
|
||||||
"bluesquare/hooks": "dev-main"
|
"bluesquare/laravel-hooks": "dev-main"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"post-autoload-dump": [
|
"post-autoload-dump": [
|
||||||
"[ $COMPOSER_DEV_MODE -eq 0 ] || @php artisan hooks:install"
|
"@php artisan hooks:install --ansi"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
"repositories": [
|
"repositories": [
|
||||||
{
|
{
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "https://git.bluesquare.io/bluesquare/hooks.git"
|
"url": "https://git.bluesquare.io/bluesquare/laravel-hooks.git"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue