Skip to content

Latest commit

 

History

History
executable file
·
17 lines (11 loc) · 820 Bytes

contributing.md

File metadata and controls

executable file
·
17 lines (11 loc) · 820 Bytes

Contributing to tasks

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:

  1. Add a new file (or copy an existing) into /src/Bild/Console/Command/[CATEGORY]
  2. Name the file the same name as the class
  3. Define the command and the arguments in the class configure function
  4. Define the command executable in the class execute function
  5. 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.