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: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2024-10-26 15:18:45 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