Add neutral diagnostic framework for future reporting modules: - DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer - Laravel exception hook in bootstrap/app.php - Module permission declarations (requires_permissions in module.json) - Core diagnostic report points (module boot/install/update failures) - Module documentation update (moduldoku.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
|
|
use function Laravel\Prompts\clear;
|
|
use function Laravel\Prompts\note;
|
|
use function Laravel\Prompts\pause;
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
note('This will disappear.');
|
|
|
|
pause('Press [Enter] to continue.');
|
|
|
|
clear();
|
|
|
|
note('This will also disappear.');
|
|
|
|
pause('Press [Enter] to continue.');
|
|
|
|
clear();
|