k2gl / entity-exist
Checks if there is at least one row with the required field in the database, for example, a row with the same identifier
Installs: 1 326
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.1
- doctrine/orm: ^2.13|^3.0
- symfony/dependency-injection: ^6.1|^v7.0
- symfony/validator: ^6.1|^7.0
Requires (Dev)
- phpunit/phpunit: ^11.1.2
- rector/rector: ^1.0
- roave/security-advisories: dev-latest
- symfony/phpunit-bridge: ^6.1|^7.0
- symfony/var-dumper: ^6.1|^7.0
README
Installation
You can add this library as a local, per-project dependency to your project using Composer:
composer require k2gl/entity-exist
Configuration
Makes classes in src/ available to be used as services in services.yaml
services:
K2gl\Component\Validator\Constraint\EntityExist\:
resource: '../vendor/k2gl/entity-exist/src/'
arguments: ['@doctrine.orm.entity_manager']
tags:
- { name: validator.constraint_validator }
Usage
AssertEntityNotExist
use K2gl\Component\Validator\Constraint\EntityExist\AssertEntityNotExist; readonly class RegisterUserOrder { public function __construct( #[Assert\NotBlank] #[Assert\Email] #[AssertEntityNotExist( entity: User::class, property: 'email', message: 'User with email "%value%" already registered.' )] public string $email, ) { } }
AssertEntityExist
use K2gl\Component\Validator\Constraint\EntityExist\AssertEntityExist; readonly class TransferUserToOtherUnitOrder { public function __construct( #[Assert\NotBlank] #[AssertEntityExist( entity: User::class, property: 'uuid', )] public string $user, #[Assert\NotBlank] #[AssertEntityExist( entity: Unit::class, property: 'uuid', )] public string $unit, ) { } }