instituteweb / composer-scripts
Fixes slashe issues on Windows when executing composer scripts (like 'bin/example').
1.1.0
2017-02-21 15:09 UTC
Requires (Dev)
- composer/composer: ^1.2
README
On Windows you get errors when you try to execute this in script section:
"bin/example"
Because Windows expects backslashes instead of slashes. When using ImprovedScriptExecution the paths are adjusted if host system is Windows.
Usage Example:
"scripts": {
"post-autoload-dump": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"bin/example --help"
]
}