PHPackages                             biohzrdmx/envy-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. biohzrdmx/envy-php

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

biohzrdmx/envy-php
==================

Simple ENV file parser

2.0(3y ago)018MITPHPPHP &gt;=7.4

Since May 23Pushed 3y ago1 watchersCompare

[ Source](https://github.com/biohzrdmx/envy-php)[ Packagist](https://packagist.org/packages/biohzrdmx/envy-php)[ RSS](/packages/biohzrdmx-envy-php/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (2)DependenciesVersions (3)Used By (0)

envy-php
========

[](#envy-php)

Simple ENV file parser

### Basic usage

[](#basic-usage)

First require `biohzrdmx/envy-php` with Composer.

Now create a `.env` file, for example:

```
APP_NAME=MyApp
APP_URL=https://app.example.com
APP_DEFAULT="${APP_URL}/dashboard"
APP_DEBUG=true
```

Create now an instance of the `Settings` class:

```
use Envy\Settings;
$settings = new Settings();
$settings->load( dirname(__FILE__) . '/.env' );
```

If the file can not be loaded it will throw a `RuntimeException`.

Then simply call the `load($name)` function to get the value of the specified option:

```
$app_name = $settings->get('APP_NAME');
```

You may also define a constant with the same name by using the `define($name)` method:

```
$settings->define('APP_NAME');
echo APP_NAME; # Prints 'MyApp'
```

Finally, you may test options for existence with the `require($name)` function:

```
# Testing for a single option
$settings->require('APP_NAME');

# Testing for multiple options
$settings->require([ 'APP_NAME', 'APP_URL' ]);
```

If a required setting is not available it will throw a `RuntimeException`.

### Licensing

[](#licensing)

This software is released under the MIT license.

Copyright © 2022 biohzrdmx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

### Credits

[](#credits)

**Lead coder:** biohzrdmx [github.com/biohzrdmx](http://github.com/biohzrdmx)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~501 days

Total

2

Last Release

1317d ago

Major Versions

1.0 → 2.02022-10-06

PHP version history (2 changes)1.0PHP &gt;=5.6

2.0PHP &gt;=7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/44b968bb45d47a621ce8e81c422ef4c126316a702156a7faf96df75610cc0d45?d=identicon)[biohzrdmx](/maintainers/biohzrdmx)

---

Top Contributors

[![biohzrdmx](https://avatars.githubusercontent.com/u/2053303?v=4)](https://github.com/biohzrdmx "biohzrdmx (3 commits)")

### Embed Badge

![Health badge](/badges/biohzrdmx-envy-php/health.svg)

```
[![Health](https://phpackages.com/badges/biohzrdmx-envy-php/health.svg)](https://phpackages.com/packages/biohzrdmx-envy-php)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
