├── .gitignore ├── README.md ├── composer.json ├── composer.lock └── src └── Plugin.php /.gitignore: -------------------------------------------------------------------------------- 1 | # composer artifacts 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balbuf/drupal-libraries-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balbuf/drupal-libraries-installer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balbuf/drupal-libraries-installer/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balbuf/drupal-libraries-installer/HEAD/src/Plugin.php --------------------------------------------------------------------------------