Merge pull request #3132 from winglian/develop

use APP_KEY from environment if available for the secret key
This commit is contained in:
Taylor Otwell
2014-12-15 08:45:49 -06:00

View File

@@ -78,7 +78,7 @@ return [
|
*/
'key' => 'YourSecretKey!!!',
'key' => getenv('APP_KEY') ?: 'YourSecretKey!!!',
'cipher' => MCRYPT_RIJNDAEL_128,