Configure

Modify configuration files

Install

laraboot task add @core/laravel-config --format=file -vvv && \

Configure

This functionality is provided by core task @core/laravel-configand hence it must be enabled before using it.

laraboot config set <key> <value> [e]

Where key is the location of the file to edit relative to the root of the project. Without extensions. Plus a single slash followed by the config path to edit.

For instance, if we wanted to change the application name (configured in config/app.php) we could do it like this:

laraboot config set config.app/name App -e APP_NAME

Last updated