PHP code example of crhg / laravel-env-check
1. Go to this page and download the library: Download crhg/laravel-env-check library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
crhg / laravel-env-check example snippets
$app->singleton(\Crhg\EnvCheck\EnvChecker::class);
$app->beforeBootstrapping(
\Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables::class,
function ($app) {
$checker = $app->make(\Crhg\EnvCheck\EnvChecker::class);
$checker->examineEnvironmentVariables();
}
);