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
commit b1dc129af5
1 changed files with 1 additions and 1 deletions

View File

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