Giter Site home page Giter Site logo

yii-configbuilder's Introduction

yii-configbuilder

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();

yii-configbuilder's People

Contributors

moicirk avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.