cli-generate-stuffs

Clone or download

Read-only

story #17158 CLI Symfony Console Component installation

* Dev environnement set up * Console app application creation (executable file bin/console) * First Hello command to greet someone with name passed as argument * Set up dev environnement * Add personal access key to authenticate on REST api in config file How to test: from bash -> /bin/console hello username or with alias: -> /bin/console h username Should display: Hello username ! Installation: run composer install to install project dependencies

Modified Files

Name
A .gitignore +3 −0 Go to diff View file
A Makefile +5 −0 Go to diff View file
M README.md +7 −0 Go to diff View file
A bin/console +11 −0 Go to diff View file
A composer.json +19 −0 Go to diff View file
A composer.lock +811 −0 Go to diff View file
A src/App/Commands/HelloCommand.php +32 −0 Go to diff View file