├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docs ├── Add.md ├── Build.md ├── Encrypt.md ├── GenerateKey.md ├── Show.md └── assets │ └── env-show.png ├── envman ├── phpunit.xml ├── src ├── Commands │ ├── Add.php │ ├── Build.php │ ├── Encrypt.php │ ├── GenerateKey.php │ └── Show.php ├── Env.php ├── Parser.php └── Writer.php └── tests ├── Commands ├── AddTest.php ├── BuildTest.php ├── EncryptTest.php ├── GenerateKeyTest.php └── ShowTest.php ├── EnvTest.php ├── ParserTest.php ├── TestUtil.php └── WriterTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/Add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/docs/Add.md -------------------------------------------------------------------------------- /docs/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/docs/Build.md -------------------------------------------------------------------------------- /docs/Encrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/docs/Encrypt.md -------------------------------------------------------------------------------- /docs/GenerateKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/docs/GenerateKey.md -------------------------------------------------------------------------------- /docs/Show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/docs/Show.md -------------------------------------------------------------------------------- /docs/assets/env-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/docs/assets/env-show.png -------------------------------------------------------------------------------- /envman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/envman -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Commands/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Commands/Add.php -------------------------------------------------------------------------------- /src/Commands/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Commands/Build.php -------------------------------------------------------------------------------- /src/Commands/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Commands/Encrypt.php -------------------------------------------------------------------------------- /src/Commands/GenerateKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Commands/GenerateKey.php -------------------------------------------------------------------------------- /src/Commands/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Commands/Show.php -------------------------------------------------------------------------------- /src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Env.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/src/Writer.php -------------------------------------------------------------------------------- /tests/Commands/AddTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/Commands/AddTest.php -------------------------------------------------------------------------------- /tests/Commands/BuildTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/Commands/BuildTest.php -------------------------------------------------------------------------------- /tests/Commands/EncryptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/Commands/EncryptTest.php -------------------------------------------------------------------------------- /tests/Commands/GenerateKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/Commands/GenerateKeyTest.php -------------------------------------------------------------------------------- /tests/Commands/ShowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/Commands/ShowTest.php -------------------------------------------------------------------------------- /tests/EnvTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/EnvTest.php -------------------------------------------------------------------------------- /tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/ParserTest.php -------------------------------------------------------------------------------- /tests/TestUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/TestUtil.php -------------------------------------------------------------------------------- /tests/WriterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrainMaestro/envman/HEAD/tests/WriterTest.php --------------------------------------------------------------------------------