[WIP] Refactor project
This commit is contained in:
33
config/web-tinker.php
Normal file
33
config/web-tinker.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
* The web tinker page will be available on this path.
|
||||
*/
|
||||
'path' => '/tinker',
|
||||
|
||||
/*
|
||||
* Possible values are 'auto', 'light' and 'dark'.
|
||||
*/
|
||||
'theme' => 'auto',
|
||||
|
||||
/*
|
||||
* By default this package will only run in local development.
|
||||
* Do not change this, unless you know what you are doing.
|
||||
*/
|
||||
'enabled' => env('APP_ENV') === 'local',
|
||||
|
||||
/*
|
||||
* This class can modify the output returned by Tinker. You can replace this with
|
||||
* any class that implements \Spatie\WebTinker\OutputModifiers\OutputModifier.
|
||||
*/
|
||||
'output_modifier' => \Spatie\WebTinker\OutputModifiers\PrefixDateTime::class,
|
||||
|
||||
/*
|
||||
* If you want to fine-tune PsySH configuration specify
|
||||
* configuration file name, relative to the root of your
|
||||
* application directory.
|
||||
*/
|
||||
'config_file' => env('PSYSH_CONFIG', null),
|
||||
];
|
||||
Reference in New Issue
Block a user