cyberinferno/yii2-phpdotenv phpdotenv Yii2 extension

Phpdotenv extension for Yii 2

This is a Yii2 extension for vulcas/phpdotenv

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require cyberinferno/yii2-phpdotenv

or add

"cyberinferno/yii2-phpdotenv": "~2.0.0"

to the require section of your composer.json.

Configuration

Usage:

return [
    //....
    'bootstrap' => [
        [
            'class' => 'cyberinferno\yii\phpdotenv\Loader',
            'path' => '@vendor/../', // Directory of the .env file 
            'file' => '.env', // Optional parameter if custom environment variable file
            'overload' => false, // Optional parameter whether to overload already existing environment variables. Defaults to false
        ],
    ]
];

To use components which will access environment variables extend Loader class like this:

<?php

namespace common\components;

use cyberinferno\yii\phpdotenv\Loader;
use yii\helpers\ArrayHelper;

class PhpdotenvLoader extends Loader
{
    public function bootstrap($app)
    {
        parent::bootstrap($app);
        $app->setComponents(ArrayHelper::merge($app->getComponents(),
            [
                'db' => [
                    'class' => 'yii\db\Connection',
                    'dsn' => getenv('DB_DSN'),
                    'username' => getenv('DB_USERNAME'),
                    'password' => getenv('DB_PASSWORD'),
                    'charset' => 'utf8',
                ],
            ]
        ));
    }
}

Bootstrap this class in your config like this:

return [
    //....
    'bootstrap' => [
        [
            'class' => 'common\components\PhpdotenvLoader'
        ],
    ]
];

This extension was tested to be working well with Yii2 Advanced Template
but can be used in any Yii2 application by sending proper .env file path while bootstrapping the extension.

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



2.0.1 is the latest of 3 releases



MIT license
Stats
7 github stars & 0 github forks
5 downloads in the last day
93 downloads in the last 30 days
10292 total downloads