Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laminas Validator Laravel Package

laminas/laminas-validator

Validation component for PHP and Laminas applications. Provides a wide range of ready-to-use validators (strings, numbers, dates, files, and more), consistent error messages, and an extensible API to create custom validators and input filtering rules.

View on GitHub
Deep Wiki
Context7

Backed Enum Value Validator

Laminas\Validator\BackedEnumValue allows you to validate that a string or numeric value is a valid value for a specified enum.

Supported Options

The following options are supported for Laminas\Validator\BackedEnumValue:

  • enum: The backed enum class you wish to test against

Basic Usage

enum MyEnum: string {
    case Something = 'Some Value';
    case OtherThing = 'Other Value';
}

$validator = new Laminas\Validator\BackedEnumValue([
    'enum' => MyEnum::class,
]);

if ($validator->isValid('Some Value')) {
    // $value is a valid value for `MyEnum`
} else {
    // $value is not a known value in `MyEnum`
    foreach ($validator->getMessages() as $message) {
        echo "$message\n";
    }
}

Unit enums are not supported by this validator. To validate enum cases as opposed to values, see the EnumCase validator.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
calmfox/watch-sylius
damienfern/grpc-symfony-bundle
atoolo/index-bundle
atoolo/genai-bundle
coprotoai/laravel-ticket
davidjln/llm-carbon-bundle
cryonighter/valid-request-bundle
coolms/taxonomy-bundle
coolms/field-bundle
articulate-orm/symfony
aaix/laravel-tall-architect
ephoto/akeneo-connector
emmanuelballery/eb-plantumlbundle
emielburgman/symfony-visitor-beacon
emielburgman/symfony-visit-storage
emielburgman/symfony-security-headers
emielburgman/symfony-log-viewer
emarref/xdebug-bundle
emarref/pubnub-bundle
elriseio/finance-money-bundle