daprime-com/yii-configbuilder
最新稳定版本:0.2.0
Composer 安装命令:
composer require daprime-com/yii-configbuilder
包简介
Configuration builder extension for applications based on Yii2
README 文档
README
Config builder class proposes a special configuration files structure to make it easier to configure Your Yii2 application for different environments.
Installation
Install extension with composer.
- add repository to list of repositories (composer.json)
"repositories": [
{
"type": "vcs",
"url": "https://github.com/daprime-com/yii-configbuilder"
}
]
- add configbuilder to require section
"daprime-com/yii-configbuilder": "0.*"
Usage
Prepare config folder files structure to look like this:
- base
--- common
--- web
--- console
- prod
--- common
--- web
--- console
... any other environments
The workflow of ConfigBuilder is following:
- takes common file from base directory
- takes (web|console) file from base directory (depends on web or cli execution)
- takes YII_ENV constant value to know what environment is used
- takes common file from (prod|dev|test) directory
- takes (web|console) file from env directory
Initialization
To initialize ConfigBuilder change your application entry points like that:
// Before
$config = require(__DIR__ . '/../config/web.php');
(new yii\web\Application($config))->run();
// After
Yii::setAlias('@root', $rootPath); //root alias is required for builder to work
$configBuilder = new \yii\configbuilder\ConfigBuilder();
(new yii\web\Application($configBuilder->getWebConfig()))->run();
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-08-21