Configuration
Paxsy Configuration
For the laravel make commands, paxsy offers all the options that are available for a make command.
To use the options, you must change the following setting in the paxsy config.
create an override config file for paxsy(if not already done) under
~/laravel-installation/config/paxsy.php
and add the following line
'gui_interactions' => true,
as result the ~/laravel-installation/config/paxsy.php
looks like:
<?php declare(strict_types=1);
return [
'stack_name' => 'app-demo',
'gui_interactions' => true,
];
Last updated on