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.
![]() + Normalize line returns |
3 years ago | |
---|---|---|
src/EnvReader | 4 years ago | |
tests | 4 years ago | |
.gitignore | 3 years ago | |
LICENSE.md | 4 years ago | |
README.md | 4 years ago | |
composer.json | 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'
];
}
}