Please feel free to add new commands or update the existing ones for bugs under the /src/Bild/Console/Command
directory. To add new commands, follow these steps:
- Add a new file (or copy an existing) into
/src/Bild/Console/Command/[CATEGORY]
- Name the file the same name as the class
- Define the command and the arguments in the class
configure
function - Define the command executable in the class
execute
function - Register your command in the engine,
/engine.php
A list of common utilities shared across tasks can be found at /src/Bild/Console/Command/BaseCommand.php
. All
contributed commands should extend this base command.
Documentation can be found here.