Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seferov/composer-env-script

Composer script for handling gitignored env files
https://github.com/seferov/composer-env-script

composer dotenv

Last synced: 1 day ago
JSON representation

Composer script for handling gitignored env files

Awesome Lists containing this project

README

        

# Composer Env File Script

The package allows creating or updating ignored env file (ex: `.env.local`) based on
a default env file (ex: `.env`) interactively.

![demo](assets/demo.gif)

----

### Installation

```shell
composer require seferov/composer-env-script
```

Modify your `composer.json` file:
```json
{
"scripts": {
"post-install-cmd": [
"Seferov\\ComposerEnvScript\\ScriptHandler::buildEnv"
],
"post-update-cmd": [
"Seferov\\ComposerEnvScript\\ScriptHandler::buildEnv"
]
}
}
```

### Configuration

By default, the package generates/updates `.env.local` file based on `.env`. This can be
changed trough composer.json extra. The configuration also allows managing multiple .env files:

```json
{
"extra": {
"seferov-env": [
{
"from-file": ".env",
"to-file": ".env.local"
},
{
"from-file": "somepath/.env.test",
"to-file": "somepath/.env.test.local"
}
]
}
}
```

### Credits

The package is highly inspired by https://github.com/Incenteev/ParameterHandler which is for
managing ignored parameters.