├── .gitattributes ├── .gitignore ├── .php_cs ├── .phpstorm.meta.php ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml └── src ├── ConfigFactory.php ├── ConfigProvider.php └── MultiEnvListener.php /.gitattributes: -------------------------------------------------------------------------------- 1 | /tests export-ignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | *.cache 4 | *.log 5 | .idea 6 | .DS_Store -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/.php_cs -------------------------------------------------------------------------------- /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/src/ConfigFactory.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/MultiEnvListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbhy/hyperf-multi-env/HEAD/src/MultiEnvListener.php --------------------------------------------------------------------------------