PhpDev.App
symfony/dotenv

symfony/dotenv

Stars: 3639

Forks: 29

Pull Requests: 8

Issues: 0

Watchers: 13

Last Updated: 2023-07-25 15:47:21

Registers environment variables from a .env file

License: MIT License

Languages: PHP, Shell

https://symfony.com/dotenv

Dotenv Component

Symfony Dotenv parses .env files to make environment variables stored in them accessible via $_SERVER or $_ENV.

Getting Started

$ composer require symfony/dotenv
use Symfony\Component\Dotenv\Dotenv;

$dotenv = new Dotenv();
$dotenv->load(__DIR__.'/.env');

// you can also load several files
$dotenv->load(__DIR__.'/.env', __DIR__.'/.env.dev');

// overwrites existing env variables
$dotenv->overload(__DIR__.'/.env');

// loads .env, .env.local, and .env.$APP_ENV.local or .env.$APP_ENV
$dotenv->loadEnv(__DIR__.'/.env');

Resources

OPEN ISSUES

See all

RELEASES

See all