dominservice / laravel-config
Merge default config with dynamic settings, and optimize.
Requires
- php: ^8.1
- ext-json: *
- laravel/framework: ^10.0|^11.0|^12
README
Laravel Config Optimize for laravel 10+ on PHP 8.1+
Installation
composer require dominservice/laravel-config
Add the service provider to config/app.php
'providers' => [ // ... Dominservice\LaravelConfig\ServiceProvider::class, ],
You should publish the migration and the config/optimize.php config file with:
php artisan vendor:publish --provider="Dominservice\LaravelConfig\ServiceProvider"
Usage
From SHELL
php artisan dso:optimize-config
From PHP
use Dominservice\LaravelConfig\Config; // ... (new Config())->buildCache();
Or set Middleware to your application
Dominservice\LaravelConfig\Http\Middleware\Optimize::class
Issues related to using .env
-
Global scope of $_ENV: Variables in $_ENV are global for a given PHP process. If the server configuration (e.g., PHP-FPM) does not properly isolate individual applications, it is possible for one project to see variables set by another.
-
Lack of process isolation: In some shared hosting configurations, process pools may be shared among different applications, which increases the risk of variable mixing.
Solution
Implement our optimize_config() function instead of env() in all project configuration files.
Example:
config/app.php ... 'env' => optimize_config('APP_ENV', 'production'), ...
To get rid of the .env file, you need to add the optimize_config.php file in the main project directory, where you need to enter the entire configuration from the .env file, but in the form of an array