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>
17 lines
577 B
PHP
17 lines
577 B
PHP
<?php
|
|
|
|
if (strpos(PHP_VERSION, "8.1.") === 0) {
|
|
return require_once __DIR__ . '/generated/8.1/rector-migrate.php';
|
|
}
|
|
if (strpos(PHP_VERSION, "8.2.") === 0) {
|
|
return require_once __DIR__ . '/generated/8.2/rector-migrate.php';
|
|
}
|
|
if (strpos(PHP_VERSION, "8.3.") === 0) {
|
|
return require_once __DIR__ . '/generated/8.3/rector-migrate.php';
|
|
}
|
|
if (strpos(PHP_VERSION, "8.4.") === 0) {
|
|
return require_once __DIR__ . '/generated/8.4/rector-migrate.php';
|
|
}
|
|
if (strpos(PHP_VERSION, "8.5.") === 0) {
|
|
return require_once __DIR__ . '/generated/8.5/rector-migrate.php';
|
|
}
|