dominservice/laravel-config

Merge default config with dynamic settings, and optimize.

2.1.0 2025-04-01 20:32 UTC

This package is auto-updated.

Last update: 2025-04-01 20:33:53 UTC


README

Packagist Latest Version Total Downloads Software License

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