DEV Community

Rhonal Chirinos
Rhonal Chirinos

Posted on

Composer use global binaries

When you install composer, you need to link the vendor/bin folder for use script when you need run a script.

echo 'export PATH="$PATH:$HOME/.composer/vendor/bin"' >> ~/.bashrc
Enter fullscreen mode Exit fullscreen mode

after

source ~/.bashrc
Enter fullscreen mode Exit fullscreen mode

That's it!

Top comments (0)