Skip to content

Instantly share code, notes, and snippets.

@paulofreitas
Created September 24, 2014 01:44
Show Gist options
  • Save paulofreitas/8a2d1dc27c0714d8487e to your computer and use it in GitHub Desktop.
Save paulofreitas/8a2d1dc27c0714d8487e to your computer and use it in GitHub Desktop.
<?php
$env = $app->detectEnvironment(function () {
$env_files = glob(__DIR__ . '/../.env.*.php');
if (count($env_files)) {
list($env) = sscanf(basename(current($env_files)), '.env.%[^.].php');
return $env;
}
return 'production';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment