aziraphale / symfony-single-command-application
Extension of Symfony's Console Application that simplifies creation of simple, single-command PHP CLI scripts
Requires
- php: >=5.4.0
- symfony/console: ^3.0
This package is not auto-updated.
Last update: 2024-10-22 23:15:07 UTC
README
This is an extension of Symfony's Console application that simplifies the creation of simple, single-command PHP CLI scripts, saving a great deal of time and repeated code.
Installation
Just use Composer:
composer require aziraphale/symfony-single-command-application
And then it should autoload as everything else does, so the example class in /examples/TemplateCommand.php
should work straight away.
Usage
See /examples/TemplateCommand.php
to see how to use this class. It's probably easiest to simply copy TemplateCommand.php
for every new single-command Symfony Console application that you create.