Created
October 2, 2019 04:53
-
-
Save fazlurr/e0619b0d189dccdffe73888e5cb746b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
// ... | |
'debug_blacklist' => [ | |
'_ENV' => [ | |
'APP_KEY', | |
'DB_PASSWORD', | |
'REDIS_PASSWORD', | |
'MAIL_PASSWORD', | |
'PUSHER_APP_KEY', | |
'PUSHER_APP_SECRET', | |
], | |
'_SERVER' => [ | |
'APP_KEY', | |
'DB_PASSWORD', | |
'REDIS_PASSWORD', | |
'MAIL_PASSWORD', | |
'PUSHER_APP_KEY', | |
'PUSHER_APP_SECRET', | |
], | |
'_POST' => [ | |
'password', | |
], | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment