├── .gitignore ├── README.md ├── composer.json ├── demo ├── index.php └── words.txt └── src ├── Facades └── Sensitive.php ├── Sensitive.php └── SensitiveServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankewei/laravel-sensitive/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankewei/laravel-sensitive/HEAD/composer.json -------------------------------------------------------------------------------- /demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankewei/laravel-sensitive/HEAD/demo/index.php -------------------------------------------------------------------------------- /demo/words.txt: -------------------------------------------------------------------------------- 1 | 日本 2 | 滚蛋 -------------------------------------------------------------------------------- /src/Facades/Sensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankewei/laravel-sensitive/HEAD/src/Facades/Sensitive.php -------------------------------------------------------------------------------- /src/Sensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankewei/laravel-sensitive/HEAD/src/Sensitive.php -------------------------------------------------------------------------------- /src/SensitiveServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankewei/laravel-sensitive/HEAD/src/SensitiveServiceProvider.php --------------------------------------------------------------------------------