Merge branch 'feature/sensitive-data' into 'master'
feature(processor): sensitive data processor See merge request !27
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 @@ | ... | @@ -8,22 +8,23 @@ |
], | ], | ||
"config": { | "config": { | ||
"platform": { | "platform": { | ||
"php": "7.2" | "php": "7.4" | ||
}, | }, | ||
"allow-plugins": { | "allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | "dealerdirect/phpcodesniffer-composer-installer": true | ||
} | } | ||
}, | }, | ||
"require": { | "require": { | ||
"php": ">=7.2|^8", | "php": ">=7.4|^8", | ||
"psr/log": "^1", | "psr/log": "^1", | ||
"monolog/monolog": "^2.9.1", | "monolog/monolog": "^2.9.1", | ||
"wpdesk/wp-notice": "^3.0" | "wpdesk/wp-notice": "^3.0" | ||
}, | }, | ||
"require-dev": { | "require-dev": { | ||
"phpunit/phpunit": "^5", | "phpunit/phpunit": "^5|^6|^7|^8|^9", | ||
"squizlabs/php_codesniffer": "^3.0.2", | "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": { | "autoload": { | ||
"psr-4": {"WPDesk\\Logger\\": "src/"} | "psr-4": {"WPDesk\\Logger\\": "src/"} | ||
... | ... |
src/Processor/SensitiveDataProcessor.php
0 → 100644
Please register or sign in to comment