thomasruiz / laravel-sanity
A sanity checker for your laravel configuration
dev-master
2016-12-07 15:38 UTC
Requires
- illuminate/console: ^5.2
- illuminate/support: ^5.2
Requires (Dev)
- phpunit/phpunit: ^5.7
This package is not auto-updated.
Last update: 2024-11-09 20:34:00 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