Skip to content

Commit

Permalink
[DotEnv][WebLink][Templating][ErrorHandler] Updated README with minim…
Browse files Browse the repository at this point in the history
…al example
  • Loading branch information
wouterj authored and fabpot committed May 26, 2020
1 parent a78e698 commit 24d734a
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,32 @@ 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
---------

* [Documentation](https://symfony.com/doc/current/components/dotenv.html)
* [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)
Expand Down

0 comments on commit 24d734a

Please sign in to comment.