sasedev / composer-plugin-filecopier
Composer Plugin Mass Files Copier
Installs: 1 445
Dependents: 3
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 6
Open Issues: 1
Type:composer-plugin
Requires
- php: >=5.5
- composer-plugin-api: ^1.0
Requires (Dev)
- composer/composer: ^1.0|1.0@dev
This package is auto-updated.
Last update: 2024-10-26 07:16:59 UTC
README
This is a very simple Composer plugin working on the post-install-cmd
and post-update-cmd
events for copying from a source path to a distination folder.
I created this to avoid copying manualy the bootstrap less files into a temporary folder and overriding the variables.less for generating a custom bootstrap.css file using the less filter from the symfony/assetic-bundle.
Installation / Usage
-
In your composer.json project's file add the requirements
{ "require": { "sasedev/composer-plugin-filecopier": ">=1.1.0" } }
-
In your composer.json project's file add the config in the extra element
{ "extra": { "filescopier" : { "source" : "vendor/twbs/bootstrap/less", "destination" : "var/less/bootstrap", "debug": "true" } } }
or
{ "extra": { "filescopier" : [ { "source" : "vendor/twbs/bootstrap/less", "destination" : "var/less/bootstrap", "debug": "true" }, { "source" : "src/Sasedev/ResBundle/Resources/less/bootstrap/*.less", "destination" : "var/less/bootstrap" }, { "source" : "/home/sasedev/Documents/*.pdf", "destination" : "var/test" } ] } }
Note: The destination element must be a folder. if the destination folder does not exists, it is recursively created using
mkdir($destination, 0755, true)
.Note: If the destination folder is not an absolute path, the relative path is calculated using the vendorDir path (
$project_path = \realpath($this->composer->getConfig()->get('vendor-dir').'/../').'/'
;)Note: The source element is evaluated using the php function
\glob($source, GLOB_MARK)
and a recursive copy is made for every result of this function into the destination folder -
Run Composer:
php composer.phar update
.
Requirements
PHP 5.5 or above (at least 5.5.9 recommended to avoid potential bugs)
Authors
Abdelkadeur Seifeddine Salah - seif.salah@gmail.com - http://sasedev.net
License
Composer is licensed under the MIT License - see the LICENSE file for details