feature(processor): sensitive data processor
parent
96e6052f
No related branches found
No related tags found
Showing
- CHANGELOG.md 4 additions, 0 deletionsCHANGELOG.md
- composer.json 5 additions, 4 deletionscomposer.json
- src/Processor/SensitiveDataProcessor.php 51 additions, 0 deletionssrc/Processor/SensitiveDataProcessor.php
- tests/unit/Processor/TestSensitiveDataProcessor.php 54 additions, 0 deletionstests/unit/Processor/TestSensitiveDataProcessor.php
- tests/unit/bootstrap.php 17 additions, 0 deletionstests/unit/bootstrap.php
... | ... | @@ -8,22 +8,23 @@ |
], | ||
"config": { | ||
"platform": { | ||
"php": "7.2" | ||
"php": "7.4" | ||
}, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"require": { | ||
"php": ">=7.2|^8", | ||
"php": ">=7.4|^8", | ||
"psr/log": "^1", | ||
"monolog/monolog": "^2.9.1", | ||
"wpdesk/wp-notice": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5", | ||
"phpunit/phpunit": "^5|^6|^7|^8|^9", | ||
"squizlabs/php_codesniffer": "^3.0.2", | ||
"wpdesk/wp-code-sniffer": "^1.2.3" | ||
"wpdesk/wp-code-sniffer": "^1.2.3", | ||
"10up/wp_mock": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": {"WPDesk\\Logger\\": "src/"} | ||
... | ... |
src/Processor/SensitiveDataProcessor.php
0 → 100644
Please register or sign in to comment