https://github.com/radutopala/tssassetsinstallwindowsbundle
https://github.com/radutopala/tssassetsinstallwindowsbundle
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/radutopala/tssassetsinstallwindowsbundle
- Owner: radutopala
- Created: 2013-02-27T21:16:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-11T05:36:28.000Z (about 12 years ago)
- Last Synced: 2025-01-13T08:34:17.578Z (5 months ago)
- Language: PHP
- Size: 120 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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