If you install a Drupal module that requires an external JavaScript library, you are more or less left on your own how to get the library into your project. If you manage your site with Composer, manually downloading and extracting packages is one of the things you wanted to avoid. Learn how Asset Packagist helps you to avoid it.
Articles tagged to Utilities.
How to use 'drush' instead of 'vendor/bin/drush' to call Drush - cool Drupal tip
With Drupal adopting the use of Composer to manage code as from Drupal 8 upwards, this has also affected the installation of Drush. Now all you need is to run a single Composer command to install it. Composer installs Drush inside the 'vendor' directory and makes it available at
vendor/bin/drush
, but you want to use the traditional drush
command and not vendor/bin/drush
. What are ways you can achieve this? Check in and get the info.