Skip to content

Commit

Permalink
added Composer PATH instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
osteel committed Jan 24, 2022
1 parent 381deff commit de7a7ee
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,25 @@ kobwise is written in PHP and is installed using [Composer](https://getcomposer.
composer global require osteel/kobwise
```

Make sure the `~/.composer/vendor/bin` directory [is in your system's `PATH`](https://blackdeerdev.com/how-to-add-composer-vendor-bin-directory-in-your-path/).
Make sure the `~/.composer/vendor/bin` directory is in your system's `PATH`.

<details>
<summary>Show me how</summary>

If it's not already there, add the following line to your Bash configuration file (usually `~/.bash_profile`, `~/.bashrc`, `~/.zshrc`, etc.):

```
export PATH=~/.composer/vendor/bin:$PATH
```

If the file doesn't exist, create it.

Run the following command on the file you've just updated for the change to take effect:

```
source ~/.bash_profile
```
</details>

## Use

Expand Down

0 comments on commit de7a7ee

Please sign in to comment.