stuyam / laravel-kickbox-validator
A kickbox email validator for form requests in laravel
Installs: 9 941
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 5
Forks: 5
Open Issues: 0
Requires
- illuminate/support: ^5.0|^6.0
- kickbox/kickbox: ^2.0
This package is auto-updated.
Last update: 2024-11-13 02:39:48 UTC
README
A kickbox.io email lookup validator for form requests in laravel. This custom validator for Laravel uses the kickbox.io API to validate that an email actual exists. Not just if it has a specific format or not, but if the email is a real email registered email.
For a working example check out Laravel Validator Example project.
Also see: Laravel Twilio Validator for phone number validation.
Step 1
Install via composer:
composer require stuyam/laravel-kickbox-validator
Step 2
Add to your config/app.php
service provider list:
StuYam\KickboxValidator\KickboxValidatorServiceProvider::class
Step 3
Add Kickbox credentials to your .env file:
KICKBOX_API_KEY=xxxxxxxxxx
Step 4 (optional)
Publish the kickbox config with php artisan vendor:publish --tag=kickbox
Usage
Add the string 'kickbox' to a form request rules or validator like so:
<?php namespace App\Http\Requests; use App\Http\Requests\Request; class EmailFormRequest extends Request { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'email' => 'required|kickbox' ]; } }