Improve installation command by separating interactive installation from non-interactive:
- By new non-interactive flag:
# Interactive installation
./bin/console php-censor:install
# Non-interactive installation
./bin/console php-censor:install --non-interactive
--url='http://php-censor.local'
--db-type=pgsql
...
- Or by separated commands:
# Interactive installation
./bin/console php-censor:install
# Non-interactive installation
./bin/console php-censor:non-interactive-install
--url='http://php-censor.local'
--db-type=pgsql
...
P. S.: Also we should add interactive mode for flag db-pgsql-sslmode from #282 and #283.
Improve installation command by separating interactive installation from non-interactive:
P. S.: Also we should add interactive mode for flag
db-pgsql-sslmodefrom #282 and #283.