respect-validation/aliases.php
Henrique Moody c783abaf37
Upgrade respect/string-formatter to 1.6.0 and remove redundant alias
- 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)
2026-02-09 13:38:40 +01:00

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');
}