Custom Command
You can extend Ayuco with your own commands.
- Create a command class (extend Ayuco's base if needed).
- Register it in the
ayucofile (between// BEGIN - Custom commandsand// END - Custom commands):
$ayuco->register(new MyCustomCommand());
- Run with
php ayuco my:custom-command.
See the Ayuco repo for advanced extension guidelines.