byteweld/laravel-validation-rules

Custom validation rules for Laravel.

v1.0.2 2025-04-02 12:21 UTC

This package is auto-updated.

Last update: 2025-04-02 12:52:27 UTC


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:

  1. Fork the repo.
  2. Create a new branch.
  3. 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