You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Julien Rosset 70a7652db2 Ignore composer.lock
+ Normalize line returns
3 years ago
src/EnvReader Support double-quote in ENV values 4 years ago
tests Support double-quote in ENV values 4 years ago
.gitignore Ignore composer.lock 3 years ago
LICENSE.md Initial commit 4 years ago
README.md Test file and update README 4 years ago
composer.json Ignore composer.lock 3 years ago

README.md

PhpEnvReader

Utility class for ENV file reading

Installation

composer require jrosset/envreader

Usage

<?php

use jrosset\EnvReader\BaseEnv;

class Env extends BaseEnv {
    protected const PATH_ENV = __DIR__ . '/.env';

    protected function initProperties (): array {
        return [
            'WEBSITE_MODE' => 'DEV',
            'WEBSITE_NAME' => 'Generic site'
        ];
    }
}