├── LICENSE.md ├── README.md ├── composer.json ├── config └── honeypot.php ├── resources └── views │ └── honeypotFormFields.blade.php └── src ├── EncryptedTime.php ├── Events └── SpamDetectedEvent.php ├── Exceptions ├── InvalidTimestamp.php └── SpamException.php ├── Honeypot.php ├── HoneypotServiceProvider.php ├── Http └── Livewire │ └── Concerns │ ├── HoneypotData.php │ └── UsesSpamProtection.php ├── ProtectAgainstSpam.php ├── SpamProtection.php ├── SpamResponder ├── BlankPageResponder.php └── SpamResponder.php └── View ├── HoneypotComponent.php └── HoneypotViewComposer.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/composer.json -------------------------------------------------------------------------------- /config/honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/config/honeypot.php -------------------------------------------------------------------------------- /resources/views/honeypotFormFields.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/resources/views/honeypotFormFields.blade.php -------------------------------------------------------------------------------- /src/EncryptedTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/EncryptedTime.php -------------------------------------------------------------------------------- /src/Events/SpamDetectedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/Events/SpamDetectedEvent.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidTimestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/Exceptions/InvalidTimestamp.php -------------------------------------------------------------------------------- /src/Exceptions/SpamException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/Exceptions/SpamException.php -------------------------------------------------------------------------------- /src/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/Honeypot.php -------------------------------------------------------------------------------- /src/HoneypotServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/HoneypotServiceProvider.php -------------------------------------------------------------------------------- /src/Http/Livewire/Concerns/HoneypotData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/Http/Livewire/Concerns/HoneypotData.php -------------------------------------------------------------------------------- /src/Http/Livewire/Concerns/UsesSpamProtection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/Http/Livewire/Concerns/UsesSpamProtection.php -------------------------------------------------------------------------------- /src/ProtectAgainstSpam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/ProtectAgainstSpam.php -------------------------------------------------------------------------------- /src/SpamProtection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/SpamProtection.php -------------------------------------------------------------------------------- /src/SpamResponder/BlankPageResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/SpamResponder/BlankPageResponder.php -------------------------------------------------------------------------------- /src/SpamResponder/SpamResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/SpamResponder/SpamResponder.php -------------------------------------------------------------------------------- /src/View/HoneypotComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/View/HoneypotComponent.php -------------------------------------------------------------------------------- /src/View/HoneypotViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-honeypot/HEAD/src/View/HoneypotViewComposer.php --------------------------------------------------------------------------------