thomasruiz/laravel-sanity

A sanity checker for your laravel configuration

dev-master 2016-12-07 15:38 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:42:35 UTC


README

Install

This package can be installed through Composer.

composer require thomasruiz/laravel-sanity

You must install this service provider.

// config/app.php
'provider' => [
    LaravelSanity\LaravelSanityServiceProvider::class,
];

Usage

Example

$ php artisan sanity production
[app.env] expected to be "production", "local" found
[app.url] expected to NOT match "/localhost/", "http://localhost" found
[mail.driver] expected to NOT be "log", "log" found