LaravelPackages.net
Acme Inc.
Toggle sidebar
thomasruiz/laravel-sanity

A sanity checker for your laravel configuration

4
1
About thomasruiz/laravel-sanity

thomasruiz/laravel-sanity is a Laravel package for a sanity checker for your laravel configuration. It currently has 1 GitHub stars and 4 downloads on Packagist. Install it with composer require thomasruiz/laravel-sanity. Discover more Laravel packages by thomasruiz or browse all Laravel packages to compare alternatives.

Last updated

Prerequisites

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

Star History Chart