iqomp / watcher
A composer plugin to run cli script when it detect some file changes
Installs: 2 389
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:composer-plugin
Requires
- composer-plugin-api: ^2.0
Requires (Dev)
README
A composer plugin to run cli script when it detect some file changes on working directory. This plugin really help on developing some application with self server like swoole where you need to restart the server on every file update.
Installation
composer require iqomp/watcher --dev
Usage
This module add new composer command named watch
that will watch for file changes
on current directory recursively, and run the provided argument as a script.
composer watch "php index.php start" --ignore="runtime" --ignore="cache"
Above script will run php index.php start
on the first run, and watch for file
changes in current directory while ignoring directory runtime
and cache
relative to current directory. When file changes found, the previous script
process get killed and new process is executed.