- Add declare(strict_types=1) to 9 PHP files missing it - Update CLAUDE.md: document composer test/lint scripts - Update CLAUDE.md: fix lthn/php-api → lthn/api package name - Fix PSR-12 compliance (Pint: ordered imports, FQCN extraction) Co-Authored-By: Virgil <virgil@lethean.io>
26 lines
581 B
PHP
26 lines
581 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Core PHP Framework Configuration
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'module_paths' => [
|
|
app_path('Core'),
|
|
app_path('Mod'),
|
|
app_path('Website'),
|
|
],
|
|
|
|
'services' => [
|
|
'cache_discovery' => env('CORE_CACHE_DISCOVERY', true),
|
|
],
|
|
|
|
'cdn' => [
|
|
'enabled' => env('CDN_ENABLED', false),
|
|
'driver' => env('CDN_DRIVER', 'bunny'),
|
|
],
|
|
];
|