- 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>
24 lines
391 B
PHP
Executable File
24 lines
391 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use Carbon\Cli\Invoker;
|
|
|
|
$dir = __DIR__.'/..';
|
|
|
|
if (!file_exists($dir.'/autoload.php')) {
|
|
$dir = __DIR__.'/../vendor';
|
|
}
|
|
|
|
if (!file_exists($dir.'/autoload.php')) {
|
|
$dir = __DIR__.'/../../..';
|
|
}
|
|
|
|
if (!file_exists($dir.'/autoload.php')) {
|
|
echo 'Autoload not found.';
|
|
exit(1);
|
|
}
|
|
|
|
require $dir.'/autoload.php';
|
|
|
|
exit((new Invoker())(...$argv) ? 0 : 1);
|