PHPackages                             erunion/laravel-examine-config - 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. [CLI &amp; Console](/categories/cli)
4. /
5. erunion/laravel-examine-config

AbandonedArchivedLibrary[CLI &amp; Console](/categories/cli)

erunion/laravel-examine-config
==============================

Adds an Artisan command that lets you examine your environment configuration.

1.1.0(10y ago)03.0kMITPHPPHP &gt;=5.6.0

Since Sep 14Pushed 10y ago1 watchersCompare

[ Source](https://github.com/erunion/laravel-examine-config)[ Packagist](https://packagist.org/packages/erunion/laravel-examine-config)[ Docs](https://github.com/erunion/laravel-examine-config)[ RSS](/packages/erunion-laravel-examine-config/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

Laravel Examine Config
======================

[](#laravel-examine-config)

Adds a `config:examine` command to Laravel Artisan that lets you examine your configured environment.

Installation
------------

[](#installation)

### 1. Install with Composer

[](#1-install-with-composer)

```
composer require --dev erunion/laravel-examine-config
```

### 2. Add to `app/config/app.php`

[](#2-add-to-appconfigappphp)

```
    'providers' => array(
        // ...
        Erunion\Providers\ExamineConfigServiceProvider::class,
    ),

```

This registers the Artisan command with Laravel.

Usage
-----

[](#usage)

### Show your entire config

[](#show-your-entire-config)

```
$ php artisan config:examine
Configuration: app
+----------+----------+-------------------------------------+
| aliases  |          |                                     |
|          | App      | Illuminate\Support\Facades\App      |
|          | Artisan  | Illuminate\Support\Facades\Artisan  |
…
+----------+----------+-------------------------------------+
Configuration: auth
+----------+----------+-----------------+
| driver   | eloquent |                 |
| model    | App\User |                 |
| password |          |                 |
|          | email    | emails.password |
|          | expire   | 60              |
|          | table    | password_resets |
| table    | users    |                 |
+----------+----------+-----------------+
...
Configuration: view
+----------+----------------------------------------+--------------------------------+
| compiled | /home/site/web/storage/framework/views |                                |
| paths    |                                        |                                |
|          | 0                                      | /home/site/web/resources/views |
+----------+----------------------------------------+--------------------------------+

```

### Show your `app` config

[](#show-your-app-config)

```
$ php artisan config:examine app
Configuration: app
+----------------------+------------------------------------+---------------------------------------------------------------+
| aliases              |                                    |                                                               |
|                      | App                                | Illuminate\Support\Facades\App                                |
|                      | Artisan                            | Illuminate\Support\Facades\Artisan                            |
|                      | Auth                               | Illuminate\Support\Facades\Auth                               |
|                      | Blade                              | Illuminate\Support\Facades\Blade                              |
|                      | Bus                                | Illuminate\Support\Facades\Bus                                |
|                      | Cache                              | Illuminate\Support\Facades\Cache                              |
|                      | Config                             | Illuminate\Support\Facades\Config                             |
|                      | Cookie                             | Illuminate\Support\Facades\Cookie                             |
|                      | Crypt                              | Illuminate\Support\Facades\Crypt                              |
|                      | DB                                 | Illuminate\Support\Facades\DB                                 |
|                      | Eloquent                           | Illuminate\Database\Eloquent\Model                            |
|                      | Event                              | Illuminate\Support\Facades\Event                              |
|                      | File                               | Illuminate\Support\Facades\File                               |
|                      | Hash                               | Illuminate\Support\Facades\Hash                               |
|                      | Input                              | Illuminate\Support\Facades\Input                              |
|                      | Lang                               | Illuminate\Support\Facades\Lang                               |
|                      | Log                                | Illuminate\Support\Facades\Log                                |
|                      | Password                           | Illuminate\Support\Facades\Password                           |
|                      | Redirect                           | Illuminate\Support\Facades\Redirect                           |
|                      | Request                            | Illuminate\Support\Facades\Request                            |
|                      | Response                           | Illuminate\Support\Facades\Response                           |
|                      | Route                              | Illuminate\Support\Facades\Route                              |
|                      | Schema                             | Illuminate\Support\Facades\Schema                             |
|                      | Session                            | Illuminate\Support\Facades\Session                            |
|                      | Storage                            | Illuminate\Support\Facades\Storage                            |
|                      | URL                                | Illuminate\Support\Facades\URL                                |
|                      | Validator                          | Illuminate\Support\Facades\Validator                          |
|                      | View                               | Illuminate\Support\Facades\View                               |
| cipher               | rijndael-128                       |                                                               |
| cookie_domain        | localhost                          |                                                               |
| debug                | true                               |                                                               |
| fallback_locale      | en                                 |                                                               |
| key                  | W4ZQxqTlGycvzKYZFyGi8WJa4ki1bhNO   |                                                               |
| locale               | en                                 |                                                               |
| log                  | daily                              |                                                               |
| name                 | My Site!                           |                                                               |
| providers            |                                    |                                                               |
|                      | 0                                  | Illuminate\Foundation\Providers\ArtisanServiceProvider        |
|                      | 1                                  | Illuminate\Auth\AuthServiceProvider                           |
|                      | 2                                  | Illuminate\Broadcasting\BroadcastServiceProvider              |
|                      | 3                                  | Illuminate\Bus\BusServiceProvider                             |
|                      | 4                                  | Illuminate\Cache\CacheServiceProvider                         |
|                      | 5                                  | Illuminate\Foundation\Providers\ConsoleSupportServiceProvider |
|                      | 6                                  | Illuminate\Routing\ControllerServiceProvider                  |
|                      | 7                                  | Illuminate\Cookie\CookieServiceProvider                       |
|                      | 8                                  | Illuminate\Database\DatabaseServiceProvider                   |
|                      | 9                                  | Illuminate\Encryption\EncryptionServiceProvider               |
|                      | 10                                 | Illuminate\Filesystem\FilesystemServiceProvider               |
|                      | 11                                 | Illuminate\Foundation\Providers\FoundationServiceProvider     |
|                      | 12                                 | Illuminate\Hashing\HashServiceProvider                        |
|                      | 13                                 | Illuminate\Pipeline\PipelineServiceProvider                   |
|                      | 14                                 | Illuminate\Auth\Passwords\PasswordResetServiceProvider        |
|                      | 15                                 | Illuminate\Session\SessionServiceProvider                     |
|                      | 16                                 | Illuminate\Translation\TranslationServiceProvider             |
|                      | 17                                 | Illuminate\Validation\ValidationServiceProvider               |
|                      | 18                                 | Illuminate\View\ViewServiceProvider                           |
|                      | 19                                 | Erunion\Providers\ExamineConfigServiceProvider                |
| timezone             | America/New_York                   |                                                               |
| url                  | http://localhost                   |                                                               |
+----------------------+------------------------------------+---------------------------------------------------------------+

```

### Show your configured `app.timezone`

[](#show-your-configured-apptimezone)

```
$ php artisan config:examine app.timezone
America/New_York

```

Changelog
---------

[](#changelog)

### 1.1.0

[](#110)

- Fixing a bug where trying to pull configured strings (like `app.timezone`) would fail because it wasn't an array, and couldn't be tableized.

### 1.0.0

[](#100)

- Initial release

License
-------

[](#license)

MIT

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

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 ~52 days

Total

2

Last Release

3841d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/02dbfe0a1ae522e5e970c2d368ddcc0bafe143a927893bbfa80d129d26c57710?d=identicon)[erunion](/maintainers/erunion)

---

Top Contributors

[![erunion](https://avatars.githubusercontent.com/u/33762?v=4)](https://github.com/erunion "erunion (9 commits)")

---

Tags

laravel

### Embed Badge

![Health badge](/badges/erunion-laravel-examine-config/health.svg)

```
[![Health](https://phpackages.com/badges/erunion-laravel-examine-config/health.svg)](https://phpackages.com/packages/erunion-laravel-examine-config)
```

PHPackages © 2026

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