mosdev-pro/sanitizer

Processing Input in a FormRequest

1.0.1 2022-11-11 13:54 UTC

This package is not auto-updated.

Last update: 2024-05-11 07:44:44 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Processing incoming values according to your rules. Now I have made 3 mechanisms:

  • Clean up spaces
  • Cleaning numbers from extraneous characters
  • Format string to lower case

You can easily add your own rules!

Installation

You can install the package via composer:

composer require mosdev-pro/sanitizer

You can publish the config file with:

php artisan vendor:publish --tag="sanitizer-config"

This is the contents of the published config file:

return [
    'rules' => [
        'custom' => '' // Your custom Pipeline 
    ]   
];

Usage

use Mosdev\Sanitizer\Traits\Sanitizer;

class Request extends FormRequest
{
    use Sanitizer;
    
    /**
     * List of fields and methods for their processing.
     *
     * @return array
     */
    public array $sanitize = [
        'user_id' => ['numeric'],
        'type'    => ['trim', 'lower'],
        'text'    => ['trim'],
    ];
}

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.