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>
20 lines
571 B
PHP
20 lines
571 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Concurrency Driver
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option determines the default concurrency driver that will be used
|
|
| by Laravel's concurrency functions. By default, concurrent work will
|
|
| be sent to isolated PHP processes which will return their results.
|
|
|
|
|
| Supported: "process", "fork", "sync"
|
|
|
|
|
*/
|
|
|
|
'default' => env('CONCURRENCY_DRIVER', 'process'),
|
|
|
|
];
|