Validate your Laravel App's Config
"
laravel-config-validator
is a Laravel package that allows you to validate your config values and environment.The main benefit of using this package is that it encourages code-as-documentation, because you can update your config validation rules each time your config changes rather than updating a boring markdown file with your project's documentation that's likely hidden away and never looked at.
Under the hood, the package uses the
Validator
provided by Laravel. So, you can use the same rules that you would typically use in your request validation."
Ash Allen
@AshAllenDesign