byteweld / laravel-validation-rules
Custom validation rules for Laravel.
Requires
- php: >=8.0
- illuminate/support: ^9.0|^10.0|^11.0|^12.0
README
A package to add custom validation rules for Laravel, including country-based phone number validation.
π Features
- Country-based phone number validation.
- International phone number validation.
- Easy integration with Laravel validation.
- Supports multiple countries (more coming soon).
π¦ Installation
You can install the package via Composer:
composer require byteweld/laravel-validation-rules
After installation, Laravel will automatically discover the service provider.
If you're using Laravel <5.5, you need to add the service provider manually in config/app.php
:
'providers' => [ Byteweld\ValidationRules\Providers\ValidationServiceProvider::class, ],
π Usage
You can use the validation rules in Laravelβs validation system.
π Country-Based Phone Number Validation
Rule: phone_number:{country}
This rule validates a phone number based on country-specific criteria.
Example Usage
$request->validate([ 'phone' => 'required|phone_number:india', ]);
Validation Logic for India
β
Must contain only numbers
β
Length must be exactly 10 digits
β
Must start with 6, 7, 8, or 9
π International Phone Number Validation
Rule: international_phone_number:{country}
This rule validates international phone numbers according to country-specific formats.
Example Usage
$request->validate([ 'phone' => 'required|international_phone_number:india', ]);
Validation Logic for India
β
Must contain only numbers
β
Length must be exactly 13 characters
β
Must start with +91 followed by a 10-digit mobile number
β
The number must start with 6, 7, 8, or 9
π§ͺ Running Tests
To ensure everything works as expected, run the tests:
php artisan test
π Customization
You can extend the validation for more countries. To contribute, submit a pull request on GitHub.
π Versioning
This package follows semantic versioning (MAJOR.MINOR.PATCH
).
v1.0.0
- Initial release with basic validation.v1.1.0
- Added support for international phone validation.- Future versions will include more country rules.
π License
This package is open-source and licensed under the MIT License.
π Contributing
We welcome contributions! If you find a bug or want to add more validation rules, feel free to:
- Fork the repo.
- Create a new branch.
- Submit a pull request.
π¬ Support
For any issues, open an issue on GitHub:
π GitHub Issues
π’ Next Steps
β
Add support for more countries
β
Add a configuration file for dynamic country validation
β
Improve test coverage