tss / assets-install-windows-bundle
Creates similar assets:install symlinks in Windows with mklink
Installs: 201
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
pkg:composer/tss/assets-install-windows-bundle
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2025-10-25 20:57:24 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