mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 14:25:45 +01:00
- Updated respect/string-formatter from ^1.0 to ^1.6 - Removed manual 'f' alias for FormatterBuilder as the package now handles it - Simplified aliases.php by delegating aliasing to the dependency itself Assisted-by: OpenCode (ollama-cloud/glm-4.7)
19 lines
562 B
PHP
19 lines
562 B
PHP
<?php
|
|
|
|
/*
|
|
* SPDX-License-Identifier: MIT
|
|
* SPDX-FileCopyrightText: (c) Respect Project Contributors
|
|
* SPDX-FileContributor: Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-FileContributor: Andy Wendt <andy@awendt.com>
|
|
* SPDX-FileContributor: Graham Campbell <graham@mineuk.com>
|
|
* SPDX-FileContributor: Henrique Moody <henriquemoody@gmail.com>
|
|
* SPDX-FileContributor: Nick Lombard <github@jigsoft.co.za>
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Respect\Validation\ValidatorBuilder;
|
|
|
|
if (!class_exists('v')) {
|
|
class_alias(ValidatorBuilder::class, 'v');
|
|
}
|