tarekdj / composer-copy-file
Composer script copying your files after install
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 15
pkg:composer/tarekdj/composer-copy-file
Requires
- php: >=5.3.3
Requires (Dev)
- composer/composer: 1.0.*@dev
- mikey179/vfsstream: ~1
- phpunit/phpunit: ~5.0
- symfony/filesystem: ~2.7
- symfony/finder: ~2.7
This package is not auto-updated.
Last update: 2025-10-30 09:31:22 UTC
README
Composer script copying your files after install. Supports copying of entire directories, individual files and complex nested directories.
For example copy fonts:
{
    "require":{
        "twbs/bootstrap": "~3.3",
        "slowprog/composer-copy-file": "~0.2"
    },
    "scripts": {
        "post-install-cmd": [
            "SlowProg\\CopyFile\\ScriptHandler::copy"
        ],
        "post-update-cmd": [
            "SlowProg\\CopyFile\\ScriptHandler::copy"
        ]
    },
    "extra": {
        "copy-file": {
            "vendor/twbs/bootstrap/fonts/": "web/fonts/"
        }
    }
}
Use cases
You need to be careful when using a last slash. The file-destination is different from the directory-destination with the slash.
Source directory hierarchy:
dir/
    subdir/
        file1.txt
        file2.txt
        .hidden
- 
Dir-to-dir: { "extra": { "copy-file": { "dir/subdir/": "web/other/" } } }Result: web/ other/ file1.txt file2.txt .hidden
- 
File-to-dir: { "extra": { "copy-file": { "dir/subdir/file1.txt": "web/other/" "dir/subdir/file2.txt": "web/other/file2.txt/" } } }Result: web/ other/ file1.txt file2.txt/ file2.txt
- 
File-to-file: { "extra": { "copy-file": { "dir/subdir/file1.txt": "web/other/file1.txt" "dir/subdir/file2.txt": "web/other/file_rename.txt" } } }Result: web/ other/ file1.txt file_rename.txt
- 
One to many destinations: { "extra": { "copy-file": { "dir/subdir/file1.txt": ["web/folder/file1.txt", "web/other/file1.txt"] } } }Result: web/ folder/ file1.txt other/ file1.txt
Credits
Thanks Slowprog for the base project - https://github.com/slowprog