├── .github ├── FUNDING.yml └── workflows │ ├── dependency-review.yml │ ├── fix-php-code-style-issues.yml │ └── phpunit.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── config └── scrubber.php ├── content ├── logo-2-color.png └── logo.png ├── docker-compose.yml ├── phpunit.xml ├── phpunit.xml.bak ├── src ├── Clients │ ├── BaseClient.php │ └── GitLabClient.php ├── Commands │ ├── MakeRegexClass.php │ └── Stubs │ │ └── RegexCollectionClass.stub ├── Exceptions │ └── SecretProviderException.php ├── Handlers │ └── ScrubberTap.php ├── Interfaces │ └── RegexCollectionInterface.php ├── RegexCollection │ ├── AmericanExpressCreditCard.php │ ├── AuthorizationBasic.php │ ├── AuthorizationBearer.php │ ├── AwsAccessKey.php │ ├── DiscoverCreditCard.php │ ├── EmailAddress.php │ ├── FacebookAccessToken.php │ ├── Firebase.php │ ├── GithubAccessToken.php │ ├── GoogleApi.php │ ├── GoogleCaptcha.php │ ├── GoogleOauth.php │ ├── HerokuApiKey.php │ ├── JsonWebToken.php │ ├── MailgunApiKey.php │ ├── MasterCardCreditCard.php │ ├── PgpPrivateBlock.php │ ├── RsaPrivateKey.php │ ├── SlackToken.php │ ├── SshDcPrivateKey.php │ ├── SshDsaPrivateKey.php │ ├── TroyCreditCard.php │ ├── TwilioAccountSid.php │ ├── TwilioApiKey.php │ ├── TwilioAppSid.php │ └── VisaCreditCard.php ├── Repositories │ ├── RegexCollection.php │ └── RegexRepository.php ├── Scrubber.php ├── ScrubberServiceProvider.php ├── SecretManager │ ├── Providers │ │ ├── Gitlab.php │ │ └── SecretProviderInterface.php │ ├── Secret.php │ └── SecretManager.php ├── Services │ ├── ScrubberService.php │ └── SecretService.php ├── Strategies │ ├── ContentProcessingStrategy │ │ ├── ContentProcessingStrategy.php │ │ ├── Handlers │ │ │ ├── ArrayContentHandler.php │ │ │ ├── LogRecordContentHandler.php │ │ │ └── StringContentHandler.php │ │ ├── ProcessHandlerContract.php │ │ └── Traits │ │ │ └── ProcessArrayTrait.php │ ├── RegexLoader │ │ ├── LoaderInterface.php │ │ ├── Loaders │ │ │ ├── ConfigLoader.php │ │ │ ├── NamespaceLoader.php │ │ │ ├── SecretLoader.php │ │ │ ├── SpecificRegex.php │ │ │ └── WildcardRegex.php │ │ └── RegexLoaderStrategy.php │ └── TapLoader │ │ ├── Loaders │ │ ├── MultipleChannel.php │ │ ├── SpecificChannel.php │ │ └── WildCardChannel.php │ │ ├── TapLoaderInterface.php │ │ └── TapLoaderStrategy.php └── Support │ └── LogRecordFactory.php ├── tests ├── Feature │ ├── ScrubLogTest.php │ └── ScrubMessageTest.php ├── Mocks │ └── get_gitlab_variables.json ├── TestCase.php └── Unit │ ├── Fixtures │ └── CustomRegex.php │ ├── Repositories │ ├── RegexCollectionTest.php │ └── RegexRepositoryTest.php │ ├── Services │ ├── ScrubberServiceTest.php │ └── SecretServiceTest.php │ ├── Strategies │ ├── ContentProcessingStrategyTest.php │ ├── Handlers │ │ └── ArrayContentHandlerTest.php │ ├── RegexLoaderStrategyTest.php │ └── TapLoaderStrategyTest.php │ └── Support │ └── LogRecordFactoryTest.php └── xdebug.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: yorcreative -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/fix-php-code-style-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/.github/workflows/fix-php-code-style-issues.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/composer.lock -------------------------------------------------------------------------------- /config/scrubber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/config/scrubber.php -------------------------------------------------------------------------------- /content/logo-2-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/content/logo-2-color.png -------------------------------------------------------------------------------- /content/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/content/logo.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/phpunit.xml.bak -------------------------------------------------------------------------------- /src/Clients/BaseClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Clients/BaseClient.php -------------------------------------------------------------------------------- /src/Clients/GitLabClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Clients/GitLabClient.php -------------------------------------------------------------------------------- /src/Commands/MakeRegexClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Commands/MakeRegexClass.php -------------------------------------------------------------------------------- /src/Commands/Stubs/RegexCollectionClass.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Commands/Stubs/RegexCollectionClass.stub -------------------------------------------------------------------------------- /src/Exceptions/SecretProviderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Exceptions/SecretProviderException.php -------------------------------------------------------------------------------- /src/Handlers/ScrubberTap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Handlers/ScrubberTap.php -------------------------------------------------------------------------------- /src/Interfaces/RegexCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Interfaces/RegexCollectionInterface.php -------------------------------------------------------------------------------- /src/RegexCollection/AmericanExpressCreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/AmericanExpressCreditCard.php -------------------------------------------------------------------------------- /src/RegexCollection/AuthorizationBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/AuthorizationBasic.php -------------------------------------------------------------------------------- /src/RegexCollection/AuthorizationBearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/AuthorizationBearer.php -------------------------------------------------------------------------------- /src/RegexCollection/AwsAccessKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/AwsAccessKey.php -------------------------------------------------------------------------------- /src/RegexCollection/DiscoverCreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/DiscoverCreditCard.php -------------------------------------------------------------------------------- /src/RegexCollection/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/EmailAddress.php -------------------------------------------------------------------------------- /src/RegexCollection/FacebookAccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/FacebookAccessToken.php -------------------------------------------------------------------------------- /src/RegexCollection/Firebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/Firebase.php -------------------------------------------------------------------------------- /src/RegexCollection/GithubAccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/GithubAccessToken.php -------------------------------------------------------------------------------- /src/RegexCollection/GoogleApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/GoogleApi.php -------------------------------------------------------------------------------- /src/RegexCollection/GoogleCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/GoogleCaptcha.php -------------------------------------------------------------------------------- /src/RegexCollection/GoogleOauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/GoogleOauth.php -------------------------------------------------------------------------------- /src/RegexCollection/HerokuApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/HerokuApiKey.php -------------------------------------------------------------------------------- /src/RegexCollection/JsonWebToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/JsonWebToken.php -------------------------------------------------------------------------------- /src/RegexCollection/MailgunApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/MailgunApiKey.php -------------------------------------------------------------------------------- /src/RegexCollection/MasterCardCreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/MasterCardCreditCard.php -------------------------------------------------------------------------------- /src/RegexCollection/PgpPrivateBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/PgpPrivateBlock.php -------------------------------------------------------------------------------- /src/RegexCollection/RsaPrivateKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/RsaPrivateKey.php -------------------------------------------------------------------------------- /src/RegexCollection/SlackToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/SlackToken.php -------------------------------------------------------------------------------- /src/RegexCollection/SshDcPrivateKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/SshDcPrivateKey.php -------------------------------------------------------------------------------- /src/RegexCollection/SshDsaPrivateKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/SshDsaPrivateKey.php -------------------------------------------------------------------------------- /src/RegexCollection/TroyCreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/TroyCreditCard.php -------------------------------------------------------------------------------- /src/RegexCollection/TwilioAccountSid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/TwilioAccountSid.php -------------------------------------------------------------------------------- /src/RegexCollection/TwilioApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/TwilioApiKey.php -------------------------------------------------------------------------------- /src/RegexCollection/TwilioAppSid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/TwilioAppSid.php -------------------------------------------------------------------------------- /src/RegexCollection/VisaCreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/RegexCollection/VisaCreditCard.php -------------------------------------------------------------------------------- /src/Repositories/RegexCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Repositories/RegexCollection.php -------------------------------------------------------------------------------- /src/Repositories/RegexRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Repositories/RegexRepository.php -------------------------------------------------------------------------------- /src/Scrubber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Scrubber.php -------------------------------------------------------------------------------- /src/ScrubberServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/ScrubberServiceProvider.php -------------------------------------------------------------------------------- /src/SecretManager/Providers/Gitlab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/SecretManager/Providers/Gitlab.php -------------------------------------------------------------------------------- /src/SecretManager/Providers/SecretProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/SecretManager/Providers/SecretProviderInterface.php -------------------------------------------------------------------------------- /src/SecretManager/Secret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/SecretManager/Secret.php -------------------------------------------------------------------------------- /src/SecretManager/SecretManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/SecretManager/SecretManager.php -------------------------------------------------------------------------------- /src/Services/ScrubberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Services/ScrubberService.php -------------------------------------------------------------------------------- /src/Services/SecretService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Services/SecretService.php -------------------------------------------------------------------------------- /src/Strategies/ContentProcessingStrategy/ContentProcessingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/ContentProcessingStrategy/ContentProcessingStrategy.php -------------------------------------------------------------------------------- /src/Strategies/ContentProcessingStrategy/Handlers/ArrayContentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/ContentProcessingStrategy/Handlers/ArrayContentHandler.php -------------------------------------------------------------------------------- /src/Strategies/ContentProcessingStrategy/Handlers/LogRecordContentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/ContentProcessingStrategy/Handlers/LogRecordContentHandler.php -------------------------------------------------------------------------------- /src/Strategies/ContentProcessingStrategy/Handlers/StringContentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/ContentProcessingStrategy/Handlers/StringContentHandler.php -------------------------------------------------------------------------------- /src/Strategies/ContentProcessingStrategy/ProcessHandlerContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/ContentProcessingStrategy/ProcessHandlerContract.php -------------------------------------------------------------------------------- /src/Strategies/ContentProcessingStrategy/Traits/ProcessArrayTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/ContentProcessingStrategy/Traits/ProcessArrayTrait.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/LoaderInterface.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/Loaders/ConfigLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/Loaders/ConfigLoader.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/Loaders/NamespaceLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/Loaders/NamespaceLoader.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/Loaders/SecretLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/Loaders/SecretLoader.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/Loaders/SpecificRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/Loaders/SpecificRegex.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/Loaders/WildcardRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/Loaders/WildcardRegex.php -------------------------------------------------------------------------------- /src/Strategies/RegexLoader/RegexLoaderStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/RegexLoader/RegexLoaderStrategy.php -------------------------------------------------------------------------------- /src/Strategies/TapLoader/Loaders/MultipleChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/TapLoader/Loaders/MultipleChannel.php -------------------------------------------------------------------------------- /src/Strategies/TapLoader/Loaders/SpecificChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/TapLoader/Loaders/SpecificChannel.php -------------------------------------------------------------------------------- /src/Strategies/TapLoader/Loaders/WildCardChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/TapLoader/Loaders/WildCardChannel.php -------------------------------------------------------------------------------- /src/Strategies/TapLoader/TapLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/TapLoader/TapLoaderInterface.php -------------------------------------------------------------------------------- /src/Strategies/TapLoader/TapLoaderStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Strategies/TapLoader/TapLoaderStrategy.php -------------------------------------------------------------------------------- /src/Support/LogRecordFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/src/Support/LogRecordFactory.php -------------------------------------------------------------------------------- /tests/Feature/ScrubLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Feature/ScrubLogTest.php -------------------------------------------------------------------------------- /tests/Feature/ScrubMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Feature/ScrubMessageTest.php -------------------------------------------------------------------------------- /tests/Mocks/get_gitlab_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Mocks/get_gitlab_variables.json -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/Fixtures/CustomRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Fixtures/CustomRegex.php -------------------------------------------------------------------------------- /tests/Unit/Repositories/RegexCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Repositories/RegexCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Repositories/RegexRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Repositories/RegexRepositoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/ScrubberServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Services/ScrubberServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/SecretServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Services/SecretServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Strategies/ContentProcessingStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Strategies/ContentProcessingStrategyTest.php -------------------------------------------------------------------------------- /tests/Unit/Strategies/Handlers/ArrayContentHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Strategies/Handlers/ArrayContentHandlerTest.php -------------------------------------------------------------------------------- /tests/Unit/Strategies/RegexLoaderStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Strategies/RegexLoaderStrategyTest.php -------------------------------------------------------------------------------- /tests/Unit/Strategies/TapLoaderStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Strategies/TapLoaderStrategyTest.php -------------------------------------------------------------------------------- /tests/Unit/Support/LogRecordFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/tests/Unit/Support/LogRecordFactoryTest.php -------------------------------------------------------------------------------- /xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YorCreative/Laravel-Scrubber/HEAD/xdebug.ini --------------------------------------------------------------------------------