Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chillerlan/php-dotenv
Load .env files into the environment. PHP 7.4+
https://github.com/chillerlan/php-dotenv
dotenv dotenv-loader env environment-variables php php-library php7 php8
Last synced: about 1 month ago
JSON representation
Load .env files into the environment. PHP 7.4+
- Host: GitHub
- URL: https://github.com/chillerlan/php-dotenv
- Owner: chillerlan
- License: mit
- Created: 2018-09-07T01:49:21.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T20:42:07.000Z (8 months ago)
- Last Synced: 2024-09-10T19:03:30.268Z (2 months ago)
- Topics: dotenv, dotenv-loader, env, environment-variables, php, php-library, php7, php8
- Language: PHP
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# php-dotenv
Loads contents from a `.env` file into the environment. PHP 8.1+
[![PHP Version Support][php-badge]][php]
[![version][packagist-badge]][packagist]
[![license][license-badge]][license]
[![Coverage][coverage-badge]][coverage]
[![Packagist downloads][downloads-badge]][downloads]
[![CI][gh-action-badge]][gh-action][php-badge]: https://img.shields.io/packagist/php-v/chillerlan/php-dotenv?logo=php&color=8892BF
[php]: https://www.php.net/supported-versions.php
[packagist-badge]: https://img.shields.io/packagist/v/chillerlan/php-dotenv.svg?logo=packagist
[packagist]: https://packagist.org/packages/chillerlan/php-dotenv
[license-badge]: https://img.shields.io/github/license/chillerlan/php-dotenv.svg
[license]: https://github.com/chillerlan/php-dotenv/blob/master/LICENSE
[coverage-badge]: https://img.shields.io/codecov/c/github/chillerlan/php-dotenv.svg?logo=codecov
[coverage]: https://codecov.io/github/chillerlan/php-dotenv
[scrutinizer-badge]: https://img.shields.io/scrutinizer/g/chillerlan/php-dotenv.svg?logo=scrutinizer
[scrutinizer]: https://scrutinizer-ci.com/g/chillerlan/php-dotenv
[downloads-badge]: https://img.shields.io/packagist/dt/chillerlan/php-dotenv.svg?logo=packagist
[downloads]: https://packagist.org/packages/chillerlan/php-dotenv/stats
[gh-action-badge]: https://github.com/chillerlan/php-dotenv/workflows/CI/badge.svg
[gh-action]: https://github.com/chillerlan/php-dotenv/actions?query=workflow%3A%22CI%22# Documentation
## Installation
**requires [composer](https://getcomposer.org)***composer.json* (note: replace `dev-main` with a [version constraint](https://getcomposer.org/doc/articles/versions.md#writing-version-constraints), e.g. `^3.0`)
```json
{
"require": {
"php": "^8.1",
"chillerlan/php-dotenv": "dev-main"
}
}
```Installation via terminal: `composer require chillerlan/php-dotenv`
Profit!
## Usage
```
# example .env
FOO=bar
BAR=foo
WHAT=${BAR}-${FOO}
``````php
$env = new DotEnv(__DIR__.'/../config', '.env');
$env->load(['foo']); // foo is required// get a variable
$foo = $_ENV['FOO']; // -> bar
$foo = $env->get('FOO'); // -> bar
$foo = $env->FOO; // -> bar// dynamically set a variable
$env->set('foo', 'whatever');
$env->FOO = 'whatever';$foo = $env->get('FOO'); // -> whatever
// ...// variable substitution
$foo = $env->get('WHAT'); // -> foo-bar
``````php
// avoid the global environment
$env = (new DotEnv(__DIR__.'/../config', '.env', false))->load();$foo = $_ENV['FOO']; // -> undefined
$foo = $env->get('FOO'); // -> bar
$foo = $env->FOO; // -> bar
```