├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Config.php └── tests ├── BootstrapTest.php ├── ConsoleConfigTest.php ├── EnvTest.php ├── WebConfigTest.php ├── app ├── .env ├── config │ ├── console.php │ ├── local-console.php │ ├── local.php │ └── web.php └── otherdir │ ├── console.php │ ├── local-console.php │ ├── local.php │ └── web.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/src/Config.php -------------------------------------------------------------------------------- /tests/BootstrapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/BootstrapTest.php -------------------------------------------------------------------------------- /tests/ConsoleConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/ConsoleConfigTest.php -------------------------------------------------------------------------------- /tests/EnvTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/EnvTest.php -------------------------------------------------------------------------------- /tests/WebConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/WebConfigTest.php -------------------------------------------------------------------------------- /tests/app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/.env -------------------------------------------------------------------------------- /tests/app/config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/config/console.php -------------------------------------------------------------------------------- /tests/app/config/local-console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/config/local-console.php -------------------------------------------------------------------------------- /tests/app/config/local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/config/local.php -------------------------------------------------------------------------------- /tests/app/config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/config/web.php -------------------------------------------------------------------------------- /tests/app/otherdir/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/otherdir/console.php -------------------------------------------------------------------------------- /tests/app/otherdir/local-console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/otherdir/local-console.php -------------------------------------------------------------------------------- /tests/app/otherdir/local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/otherdir/local.php -------------------------------------------------------------------------------- /tests/app/otherdir/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/app/otherdir/web.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/yii2-configloader/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------