PHP code example of johnwilhite / laravel-flare-scrubber
1. Go to this page and download the library: Download johnwilhite/laravel-flare-scrubber 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/ */
johnwilhite / laravel-flare-scrubber example snippets
return [
'sensitive_data' => [
'keys' => [
'ssn',
'bank_routing_number',
'credit_card_number'
],
'key_regex' => [
'/^ssn/'
],
'value_regex' => [
'/^\d{3}-?\d{2}-?\d{4}$/'
]
]
];