php-developer/config/core.php
Snider 6adcd6ec0b
Some checks failed
CI / PHP 8.3 (pull_request) Failing after 2s
CI / PHP 8.4 (pull_request) Failing after 3s
fix(dx): add strict_types, composer scripts, and Pint config
- Add declare(strict_types=1) to all 12 PHP files missing it
- Add composer test/lint scripts to composer.json
- Add laravel/pint to require-dev for PSR-12 compliance
- Add pint.json with Laravel preset
- Update CLAUDE.md commands to match monorepo conventions

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-17 09:08:38 +00:00

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'),
],
];