supsign / composer-symlinks
Composer script handling symlinks
1.0.1
2020-07-23 14:46 UTC
Requires
- symfony/filesystem: ^2.5 || ^3.0
This package is auto-updated.
Last update: 2025-03-09 20:59:12 UTC
README
Composer script handling creation of symlinks inside your composer project.
Note: Symlinks will become files copy when composer is run with --no-dev
Installation
Installation can be done as usually using composer.
composer require supsign/composer-symlinks
Usage
Add the following in your root composer.json
file:
"require": { "supsign/composer-symlinks": "dev-master" }, "scripts": { "post-install-cmd": [ "Supsign\\ComposerSymlinks\\ScriptHandler::createSymlinks" ], "post-update-cmd": [ "Supsign\\ComposerSymlinks\\ScriptHandler::createSymlinks" ] }, "extra": { "symlinks": { "components": "web/components" } }
After running either composer install
or composer update
, components folder will be accessible from your web folder web/components/
.
But of course, you have to be careful when making symlinks to a folder which is publicly accessible.