Koriym.EnvJson

env.json logo

Japanese

A modern approach to environment variables using JSON instead of .env files, with built-in validation via JSON schema.

Features

Installation

composer require koriym/env-json

Basic Usage

// Load and validate environment variables
$env = (new EnvJson())->load(__DIR__);

// Access variables as object properties
echo $env->DATABASE_URL;

// Or use traditional getenv()
echo getenv('DATABASE_URL');

Configuration Files

JSON Schema (env.schema.json)

Define your environment variables with types, descriptions, and constraints:

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
        "DATABASE_URL", "API_KEY"
    ],
    "properties": {
        "DATABASE_URL": {
            "description": "Connection string for the database",
            "type": "string",
            "pattern": "^mysql://.*"
        },
        "API_KEY": {
            "description": "Authentication key for external API",
            "type": "string",
            "minLength": 32
        },
        "DEBUG_MODE": {
            "description": "Enable debug output",
            "type": "boolean",
            "default": false
        }
    }
}

Environment File (env.json)

Your actual configuration values:

{
    "$schema": "./env.schema.json",
    "DATABASE_URL": "mysql://user:pass@localhost/mydb",
    "API_KEY": "1234567890abcdef1234567890abcdef",
    "DEBUG_MODE": true
}

Workflow & Best Practices

Development Environment

  1. Schema creation: Define env.schema.json with all required variables, types, and constraints
  2. Default values: Create env.dist.json with default/sample values that can be shared with the team
  3. Local overrides: Create env.json with your specific local values (add to .gitignore)
  4. Loading process:
    • EnvJson first tries to validate existing environment variables
    • If validation fails, it loads env.json if present
    • If env.json is not found, it falls back to env.dist.json

Production Environment

  1. CI/CD setup:
    • Remove env.dist.json during deployment (not needed in production)
    • Do not include env.json (should be in .gitignore)
  2. Configuration: Set all environment variables directly in your production environment
  3. Validation: EnvJson validates that all required variables are present and valid

Converting from .env

Convert your existing .env files to JSON format:

bin/ini2json .env

This generates both env.schema.json and env.dist.json files.

Command Line Tool: envjson

The envjson command line tool helps you integrate with various environments:

# Load variables into current shell
source <(bin/envjson)

# Specify custom directory
source <(bin/envjson -d ./config)

# Output in PHP-FPM format: env[FOO] = "foo1"
bin/envjson -d ./config -o fpm > .env.fpm

# Output in INI format: FOO="foo1"
bin/envjson -d ./config -o ini > env.ini

# Output in shell format: export FOO="foo1"
bin/envjson -d ./config -o shell > env.sh

Options

  -d --dir=DIR     Directory containing env files (default: current directory)
  -f --file=FILE   JSON file name to load (default: env.json)
  -o --output=FMT  Output format: shell, fpm, ini (default: shell)
  -v --verbose     Show detailed messages
  -q --quiet       Suppress all warning messages
  -h --help        Display help message

Why JSON instead of .env?

Story

env.json story