Download the PHP package bmcclure/drupal-library-mapping without Composer
On this page you can find all versions of the php package bmcclure/drupal-library-mapping. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bmcclure/drupal-library-mapping
More information about bmcclure/drupal-library-mapping
Files in bmcclure/drupal-library-mapping
Package drupal-library-mapping
Short Description A helper for installing library assets for Drupal.
License MIT
Informations about the package drupal-library-mapping
drupal-library-mapping
A helper for installing library assets for Drupal.
By using Asset Packagist, you can already install Drupal assets into the right location.
But, what about packages that aren't named the way a Drupal module is expecting?
This package both includes common name mappings already, and allows you to specify your own in composer.json.
Then, it will symlink, copy, or move the mapped assets to the right location whenever they are installed or updated.
How to use the plugin
First, require "bmcclure/drupal-library-mapping".
Enable Asset Packagist support following their instructions.
Configure the following in extra:
"installer-types": ["library", "drupal-library", "bower-asset", "npm-asset"],
"installer-paths": {
"libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
]
}
Now simply require assets from Asset Packagist, and they'll be mapped appropriately.
Customizing the copy type
By default, the mapped plugins are copied.
Add the following to extras to customize the method used for mapping:
"drupal-library-mapping-type": "symlink"
Accepted values are "copy" (the default), "symlink", and "move".
Note that a side effect of using "move" is that composer will reinstall the package every time it runs.
Customizing the package name map
You may wish to map other library names to common ones.
You can add new mappings to the "drupal-library-mapping" key in extras.
Example:
"drupal-library-mapping": {
"jquery-easing-original": "easing"
}
All versions of drupal-library-mapping with dependencies
composer-plugin-api Version ^1.0 || ^2.0