tss/assets-install-windows-bundle

Creates similar assets:install symlinks in Windows with mklink

dev-master 2013-04-11 05:36 UTC

This package is not auto-updated.

Last update: 2024-04-27 12:49:48 UTC


README

Creates assets:install symlinks in Windows with mklink

Installation instructions:

  • Easiest way to install is via composer, add those lines to ./composer.json:

    ```
    "require": {
      ...
      "tss/assets-install-windows-bundle": "dev-master"
    }
    

 
  and then run ```composer.phar install```

- Then enable the bundle in ```./app/AppKernel.php```:
    
    ```
    public function registerBundles()
    {
        $bundles = array(
                ...
                new TSS\AssetsInstallWindowsBundle\TSSAssetsInstallWindowsBundle(),
            );
    }
  • You can now create assets symlinks in Windows >= Vista:

    app/console tss:assets:install web

Enjoy :)

PS: Thanks @Dilibau for the tip