An open API service indexing awesome lists of open source software.

https://github.com/radutopala/tssassetsinstallwindowsbundle


https://github.com/radutopala/tssassetsinstallwindowsbundle

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

TSSAssetsInstallWindowsBundle
===================

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