Download the PHP package quillstack/dotenv without Composer
On this page you can find all versions of the php package quillstack/dotenv. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download quillstack/dotenv
More information about quillstack/dotenv
Files in quillstack/dotenv
Package dotenv
Short Description The library for using .env files.
License MIT
Homepage https://quillstack.org/dotenv
Informations about the package dotenv
Quillstack Dotenv
The library for using .env
files. You can find the full documentation on the website: \
https://quillstack.org/dotenv
The .env
should be used for sensitive information like passwords, hosts, keys, credentials, and all other values that
can be changed depending on the environment, e.g., debug mode settings or logs level.
Installation
To install this package, run the standard command using Composer:
Usage
You can use Quillstack Dotenv package when you want to use .env
files in your project.
Simple usage
If you created the .env
file in the root directory of your proejct:
You can load this .env
file in your application:
Every time you need to know if your application works in debug mode, you can check it using this helper function:
Default values
You can also define a default value depending on the context:
Required keys
You can use another helper method for required keys. If required key is not found an exception will be thrown:
The result if the key DATABASE_HOST
is not set in the .env
file:
Multi-line values
You can define multi-line values in your .env
file by using \n
separator instead of new lines for example:
Unit tests
Run tests using a command: