sebastianwestberg / antiscrape
A layer of scraping protection for your sensitive text data
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/sebastianwestberg/antiscrape
Requires
- php: >=5.3.0
Requires (Dev)
- phpspec/phpspec: ~2.0
This package is not auto-updated.
Last update: 2025-12-21 00:33:07 UTC
README
Example usage
use Antiscrape\Scrambler\GenericScrambler as Scrambler; use Antiscrape\Formatter\CssFormatter; use Antiscrape\Formatter\HtmlFormatter; $scrambler = new Scrambler(); $scramble = $scrambler->scramble('Lorem ipsum.'); <style><?php echo CssFormatter::format($scramble); ?></style> <p><?php echo HtmlFormatter::format($scramble); ?></p>