mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 22:24:12 +01:00
* symfony 5.4 (diff dev) * symfony 5.4 (working) * symfony 5.4 (update autoload) * symfony 5.4 (remove swiftmailer mailer implementation) * symfony 5.4 (php doc and split Global accessor class) ### Impacted packages: composer require php:">=7.2.5 <8.0.0" symfony/console:5.4.* symfony/dotenv:5.4.* symfony/framework-bundle:5.4.* symfony/twig-bundle:5.4.* symfony/yaml:5.4.* --update-with-dependencies composer require symfony/stopwatch:5.4.* symfony/web-profiler-bundle:5.4.* --dev --update-with-dependencies
37 lines
903 B
Markdown
37 lines
903 B
Markdown
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
|
|
```
|
|
|
|
```php
|
|
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
|
|
---------
|
|
|
|
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
|
|
* [Report issues](https://github.com/symfony/symfony/issues) and
|
|
[send Pull Requests](https://github.com/symfony/symfony/pulls)
|
|
in the [main Symfony repository](https://github.com/symfony/symfony)
|