thisisruddy/composer-symlinker

There is no license information available for the latest version (1.0.3) of this package.

Installs: 423

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:composer-plugin

1.0.3 2021-01-12 17:25 UTC

This package is not auto-updated.

Last update: 2025-06-19 05:17:48 UTC


README

Just add some mappings in the extra area of your composer.json file to create symbolic/juction links after composer install & composer update commands.

Should work with Windows & Linux.

  //composer.json
  ...
  "extra": {
    "symlink-mappings": [
      {
        "src": "vendor/author/package/dist/core.min.css",
        "dest": "test/styles.css"
      },
      {
        "src": "vendor/daylong/dl-assets/dist/wordpress",
        "dest": "test/wordpress"
      }
    ]
  }
}