11 Commits

4 changed files with 21 additions and 2 deletions

6
.gitattributes vendored Normal file
View File

@@ -0,0 +1,6 @@
test/ export-ignore
phpstan.neon export-ignore
phpunit.xml export-ignore
psalm.xml export-ignore
.phan/ export-ignore
.* export-ignore

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.phpunit.result.cache

View File

@@ -9,7 +9,19 @@ repository. The `.env` should *NEVER* be checked into anything
## 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

View File

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