digitalrevolution/symfony-validation-shorthand

Validation shorthand for symfony

Installs: 46 770

Dependents: 2

Suggesters: 0

Security: 0

Stars: 9

Watchers: 2

Forks: 3

Open Issues: 2

Type:symfony-bundle

v1.2.0 2023-12-07 11:52 UTC

This package is auto-updated.

Last update: 2024-05-01 00:17:07 UTC


README

Minimum PHP Version Minimum Symfony Version Run tests

Symfony Validation Shorthand

A validation shorthand component for Symfony, similar to the syntax in the "illuminate/validator" package for Laravel.

Installation

Include the library as dependency in your own project via:

composer require "digitalrevolution/symfony-validation-shorthand"

Usage

Example

$rules = [
    'name.first_name' => 'required|string|min:5',
    'name.last_name'  => 'string|min:6',                     // last name is optional
    'email'           => 'required|email',
    'password'        => 'required|string|between:7,40',
    'phone_number'    => 'required|regex:/^020\d+$/',
    'news_letter'     => 'required|bool',
    'tags?.*'         => 'required|string'                   // if tags is set, must be array of all strings with count > 0 
];        

// transform the rules into a Symfony Constraint tree
$constraint = (new ConstraintFactory)->fromRuleDefinitions($rules);

// validate the data
$violations = \Symfony\Component\Validator\Validation::createValidator()->validate($data, $constraint);

Validates:

[
    'name'         => [
        'first_name' => 'Peter',
        'last_name'  => 'Parker'
    ],
    'email'        => 'example@example.com',
    'password'     => 'hunter8',
    'phone_number' => '0201234678',
    'news_letter'  => 'on',
    'tags'         => ['sports', 'movies', 'music']           
]

Documentation

Full syntax and examples:

About us

At 123inkt (Part of Digital Revolution B.V.), every day more than 50 development professionals are working on improving our internal ERP and our several shops. Do you want to join us? We are looking for developers.