seferov/composer-env-script

Composer script for handling gitignored env files

v1.0.0 2022-09-29 10:49 UTC

This package is auto-updated.

Last update: 2024-03-29 04:46:48 UTC


README

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

demo

Installation

composer require seferov/composer-env-script

Modify your composer.json file:

{
  "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:

{
  "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.