PHPackages                             dfurnes/environmentalist - 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. [Framework](/categories/framework)
4. /
5. dfurnes/environmentalist

ActiveLibrary[Framework](/categories/framework)

dfurnes/environmentalist
========================

Dead-simple setup for Laravel apps.

v2.0.0(4y ago)123.6kMITPHP

Since Oct 23Pushed 4y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (2)Versions (10)Used By (0)

Environmentalist [![Packagist](https://camo.githubusercontent.com/03692dd3144dad2064a3407cb9900348d0c9cb7df31a89bfb4fc17bbbf24d184/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f444675726e65732f656e7669726f6e6d656e74616c6973742e7376673f7374796c653d666c6174)](https://packagist.org/packages/DFurnes/environmentalist)
==================================================================================================================================================================================================================================================================================================================================================

[](#environmentalist-)

**Dead-simple setup for Laravel apps.** Environmentalist is a collection of handy tools for making setup scripts with [Artisan](https://laravel.com/docs/5.5/artisan). Easily create an environment file, prompt the user for values (with smart defaults &amp; autocomplete), and run commands - all without needing to write out or follow lengthy directions.

### Installation

[](#installation)

To install this package simply add it to your Laravel project using composer:

```
$ composer require dfurnes/environmentalist
```

### Usage

[](#usage)

Environmentalist is essentially a [PHP trait](https://www.php.net/manual/en/language.oop5.traits.php) that provides a collection of helpful methods that you can use within your console commands for setting up a project.

To begin using it, you need to create a console command in your Laravel project. As an exmaple, let's create a new `SetupCommand` for our project:

```
$ php artisan make:command SetupCommand
```

In the `app/Console/Commands` directory, you should have a new `SetupCommand.php` file.

Now

Now, within this file, you can `use` the `ConfiguresApplication` trait in the class and import the file:

```
namespace App\Console\Commands;

use DFurnes\Environmentalist\ConfiguresApplication;
use Illuminate\Console\Command;

class SetupCommand extends Command
{
    use ConfiguresApplication;

    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'setup';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Configure your application.';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return void
     */
    public function handle()
    {
        // Setup code and environmentalist configuration methods used here!
    }

}
```

Be sure to set a `$signature` to define the name of the command to run, and a `$description` that describes what it does.

### License

[](#license)

MIT © [David Furnes](https://dfurnes.com)

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~170 days

Recently: every ~115 days

Total

9

Last Release

1764d ago

Major Versions

v0.0.7 → v1.0.02021-06-28

v1.0.0 → v2.0.02021-07-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/89ae02c44b5b18c34df4aca45a49422c1802d9c355eed524815fc79f74f7401d?d=identicon)[DFurnes](/maintainers/DFurnes)

---

Top Contributors

[![DFurnes](https://avatars.githubusercontent.com/u/583202?v=4)](https://github.com/DFurnes "DFurnes (12 commits)")[![weerd](https://avatars.githubusercontent.com/u/105849?v=4)](https://github.com/weerd "weerd (6 commits)")

### Embed Badge

![Health badge](/badges/dfurnes-environmentalist/health.svg)

```
[![Health](https://phpackages.com/badges/dfurnes-environmentalist/health.svg)](https://phpackages.com/packages/dfurnes-environmentalist)
```

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[ecotone/laravel

Laravel integration for Ecotone

21307.6k3](/packages/ecotone-laravel)

PHPackages © 2026

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