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.7kMITPHP

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 2w 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 77% 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

1811d ago

Major Versions

v0.0.7 → v1.0.02021-06-28

v1.0.0 → v2.0.02021-07-15

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/583202?v=4)[David Furnes](/maintainers/DFurnes)[@DFurnes](https://github.com/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

[laravel/framework

The Laravel Framework.

34.8k543.8M19.5k](/packages/laravel-framework)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21313.7k3](/packages/ecotone-laravel)[nasirkhan/module-manager

Module Manager &amp; Generator for Laravel Starter Kit (https://github.com/nasirkhan/laravel-starter)

1043.4k5](/packages/nasirkhan-module-manager)

PHPackages © 2026

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