Gracefully installing global Composer libraries

1 · Amit Merchant · Oct. 13, 2020, 10:44 a.m.
Recently, I happened to install the Laravel Envoy library in my Linux-powered machine. Now, if you don’t know Envoy is a task runner that can be used to define and run common tasks on your remote servers. You can set up tasks for your application deployment such as Git commands, artisan commands, and a lot of other CLI-based commands. Now, coming to the issue I faced. To use Envoy, you’d need to install it globally using Composer using the global require like so. $ composer global require larave...