===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-vlucas-phpdotenv-3.6.7/README.md-3-
php-vlucas-phpdotenv-3.6.7/README.md:4:Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.
php-vlucas-phpdotenv-3.6.7/README.md-5-
##############################################
php-vlucas-phpdotenv-3.6.7/README.md-125-All of the defined variables are now accessible with the `getenv`
php-vlucas-phpdotenv-3.6.7/README.md:126:method, and are available in the `$_ENV` and `$_SERVER` super-globals.
php-vlucas-phpdotenv-3.6.7/README.md-127-
##############################################
php-vlucas-phpdotenv-3.6.7/README.md-148-
php-vlucas-phpdotenv-3.6.7/README.md:149:This is done by wrapping an existing environment variable in `${…}` e.g.
php-vlucas-phpdotenv-3.6.7/README.md-150-
##############################################
php-vlucas-phpdotenv-3.6.7/README.md-171-
php-vlucas-phpdotenv-3.6.7/README.md:172:Need us to not set `$_ENV` but not `$_SERVER`, or have other custom requirements? No problem! Simply pass a custom implementation of `Dotenv\Environment\FactoryInterface` to `Dotenv\Loader` on construction. In practice, you may not even need a custom implementation, since our default implementation allows you provide an array of `Dotenv\Environment\Adapter\AdapterInterface` for proxing the underlying calls to.
php-vlucas-phpdotenv-3.6.7/README.md-173-
php-vlucas-phpdotenv-3.6.7/README.md:174:For example, if you want us to only ever fiddle with `$_ENV` and `putenv`, then you can setup Dotenv as follows:
php-vlucas-phpdotenv-3.6.7/README.md-175-
##############################################
php-vlucas-phpdotenv-3.6.7/composer.json-2-    "name": "vlucas/phpdotenv",
php-vlucas-phpdotenv-3.6.7/composer.json:3:    "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
php-vlucas-phpdotenv-3.6.7/composer.json-4-    "keywords": ["env", "dotenv", "environment"],