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.
29 lines
456 B
Markdown
29 lines
456 B
Markdown
# PhpEnvReader
|
|
|
|
__Utility class for ENV file reading__
|
|
|
|
## Installation
|
|
|
|
```
|
|
composer require jrosset/envreader
|
|
```
|
|
|
|
## Usage
|
|
|
|
```php
|
|
<?php
|
|
|
|
use jrosset\EnvReader\EnvConfig;
|
|
|
|
class Env extends EnvConfig {
|
|
protected const PATH_ENV = __DIR__ . '/.env';
|
|
|
|
protected function initProperties (): array {
|
|
return [
|
|
'WEBSITE_MODE' => 'DEV',
|
|
'WEBSITE_NAME' => 'Generic site'
|
|
];
|
|
}
|
|
}
|
|
```
|