https://github.com/panlatent/yii2-dotenv
PHP dotenv for Yii2 framework
https://github.com/panlatent/yii2-dotenv
php-dotenv yii2-framework
Last synced: 19 days ago
JSON representation
PHP dotenv for Yii2 framework
- Host: GitHub
- URL: https://github.com/panlatent/yii2-dotenv
- Owner: panlatent
- License: mit
- Created: 2018-01-04T09:54:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-11T13:27:14.000Z (over 2 years ago)
- Last Synced: 2025-04-25T22:17:52.730Z (26 days ago)
- Topics: php-dotenv, yii2-framework
- Language: PHP
- Size: 19.5 KB
- Stars: 39
- Watchers: 2
- Forks: 16
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Yii2 DotEnv
===========
[](https://github.com/panlatent/yii2-dotenv/actions/workflows/tests.yml)
[](https://packagist.org/packages/yiithings/yii2-dotenv)
[](https://packagist.org/packages/yiithings/yii2-dotenv)
[](https://packagist.org/packages/yiithings/yii2-dotenv)
[](https://packagist.org/packages/yiithings/yii2-dotenv)PHP DotEnv for Yii2 framework.
Installation
------------
Then tell [Composer](https://getcomposer.org) to load the extension:```bash
composer require yiithings/yii2-dotenv
```Configuration
------------
The extension default load environment variables from `.env` file in your application root directory. You can change
the file path and name configure in your application entry file:```php
define('DOTENV_PATH', '/path/to/.env');
define('DOTENV_FILE', '.env');
define('DOTENV_OVERLOAD', false);
```Usage
-----
Once the extension is installed, simply use it in your code by :
```
[
'db' => [
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASS'),
],
]
```The env function will autoload .env file, it uses the following search mechanism:
If there is a Yii class, then pass the alias @vendor or @app or @yii, Otherwise
according to the project directory to determine.
But, if your application vendor directory is a symbol link and you no registered
@vendor or @app alias before call env function, the project will not working. So
you should set the @vendor alias before calling env function.