| Package Data | |
|---|---|
| Maintainer Username: | vkoori |
| Maintainer Contact: | kooroshsafeashrafi@gmail.com (Koorosh SafeAshrafi) |
| Package Create Date: | 2023-03-23 |
| Package Last Update: | 2023-03-23 |
| Language: | PHP |
| License: | Unknown |
| Last Refreshed: | 2025-10-27 03:08:42 |
| Package Statistics | |
|---|---|
| Total Downloads: | 11 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
composer require vkoori/env-reloader
This package causes the code inside the .env file to be rewritten. After changing the .env, the configuration of the application will also be updated.
dump(env('APP_ENV'));
Reload::env(
data: [
'APP_ENV' => 'production'
]
);
dump(env('APP_ENV'));