gmdotnet/composer-copy-file

Composer script copying your dirs and files after install or update

0.3.0 2017-08-29 07:20 UTC

This package is auto-updated.

Last update: 2024-04-29 03:18:32 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",
        "gmdotnet/composer-copy-file": "~0.3"
    },
    "scripts": {
        "post-install-cmd": [
            "GMdotnet\\CopyFile\\ScriptHandler::copy"
        ],
        "post-update-cmd": [
            "GMdotnet\\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
        .filehidden
  1. Dir-to-dir:

    {
        "extra": {
            "copy-file": {
                "dir/subdir/": "web/other/"
            }
        }
    }
    

    Result:

    web/
        other/
            file1.txt
            file2.txt
            .filehidden
    
  2. 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
    
  3. 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
    

Credits

Thanks Slowprog for the base project - https://github.com/slowprog
Giuseppe Morelli - giuseppemorelli.net