2 Commits

Author SHA1 Message Date
df23a7a1b1 Update documentation 2022-06-08 15:37:10 +09:00
652c3554f8 Fix comment in phpunit test file 2022-06-08 15:31:48 +09:00
2 changed files with 14 additions and 2 deletions

View File

@@ -9,7 +9,19 @@ repository. The `.env` should *NEVER* be checked into anything
## How to install ## How to install
`comoser require gullevek/dotEnv` `composer require gullevek/dotEnv`
## Run it
Create a `.env` file in the current folder.
Create a file like below
```php
require '../vendor/autoload.php';
gullevek\dotEnv\DotEnv::readEnvFile(__DIR__);
```
All data will be in the `$_ENV` array
## How it works ## How it works

View File

@@ -7,7 +7,7 @@ namespace tests;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
/** /**
* Test class for ACL\Login * Test class for DotEnv
* @coversDefaultClass \gullevek\DotEnv * @coversDefaultClass \gullevek\DotEnv
* @testdox \gullevek\DotEnv method tests * @testdox \gullevek\DotEnv method tests
*/ */