├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── examples ├── 00_hello_world.php ├── 01_nested.php ├── 02_completely_hidden.php └── 03_right_to_left.php ├── phpunit.xml ├── src └── RedactSensitiveProcessor.php └── tests ├── MonologUsageTest.php ├── Pest.php ├── RedactSensitiveTest.php └── TestCase.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.cache 2 | composer.phar 3 | vendor/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/00_hello_world.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/examples/00_hello_world.php -------------------------------------------------------------------------------- /examples/01_nested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/examples/01_nested.php -------------------------------------------------------------------------------- /examples/02_completely_hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/examples/02_completely_hidden.php -------------------------------------------------------------------------------- /examples/03_right_to_left.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/examples/03_right_to_left.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/RedactSensitiveProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/src/RedactSensitiveProcessor.php -------------------------------------------------------------------------------- /tests/MonologUsageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/tests/MonologUsageTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/RedactSensitiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/tests/RedactSensitiveTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocavalcante/redact-sensitive/HEAD/tests/TestCase.php --------------------------------------------------------------------------------