- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
64 lines
2.0 KiB
PHP
Executable File
64 lines
2.0 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Console Commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option allows you to add additional Artisan commands that should
|
|
| be available within the Tinker environment. Once the command is in
|
|
| this array you may execute the command in Tinker using its name.
|
|
|
|
|
*/
|
|
|
|
'commands' => [
|
|
// App\Console\Commands\ExampleCommand::class,
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Auto Aliased Classes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Tinker will not automatically alias classes in your vendor namespaces
|
|
| but you may explicitly allow a subset of classes to get aliased by
|
|
| adding the names of each of those classes to the following list.
|
|
|
|
|
*/
|
|
|
|
'alias' => [
|
|
//
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Classes That Should Not Be Aliased
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Typically, Tinker automatically aliases classes as you require them in
|
|
| Tinker. However, you may wish to never alias certain classes, which
|
|
| you may accomplish by listing the classes in the following array.
|
|
|
|
|
*/
|
|
|
|
'dont_alias' => [
|
|
'App\Nova',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Project Trust Mode
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| PsySH restricts local project features unless your project is trusted.
|
|
| Set this to "always" to avoid untrusted project warnings in Tinker.
|
|
| Accepted values: "prompt", "always", "never", true, false, null.
|
|
|
|
|
*/
|
|
|
|
'trust_project' => env('TINKER_TRUST_PROJECT', 'always'),
|
|
|
|
];
|