├── Attribute └── HasNamedArguments.php ├── CHANGELOG.md ├── Command └── DebugCommand.php ├── Constraint.php ├── ConstraintValidator.php ├── ConstraintValidatorFactory.php ├── ConstraintValidatorFactoryInterface.php ├── ConstraintValidatorInterface.php ├── ConstraintViolation.php ├── ConstraintViolationInterface.php ├── ConstraintViolationList.php ├── ConstraintViolationListInterface.php ├── Constraints ├── AbstractComparison.php ├── AbstractComparisonValidator.php ├── All.php ├── AllValidator.php ├── AtLeastOneOf.php ├── AtLeastOneOfValidator.php ├── Bic.php ├── BicValidator.php ├── Blank.php ├── BlankValidator.php ├── Callback.php ├── CallbackValidator.php ├── CardScheme.php ├── CardSchemeValidator.php ├── Cascade.php ├── Charset.php ├── CharsetValidator.php ├── Choice.php ├── ChoiceValidator.php ├── Cidr.php ├── CidrValidator.php ├── Collection.php ├── CollectionValidator.php ├── Composite.php ├── Compound.php ├── CompoundValidator.php ├── Count.php ├── CountValidator.php ├── Country.php ├── CountryValidator.php ├── CssColor.php ├── CssColorValidator.php ├── Currency.php ├── CurrencyValidator.php ├── Date.php ├── DateTime.php ├── DateTimeValidator.php ├── DateValidator.php ├── DisableAutoMapping.php ├── DivisibleBy.php ├── DivisibleByValidator.php ├── Email.php ├── EmailValidator.php ├── EnableAutoMapping.php ├── EqualTo.php ├── EqualToValidator.php ├── Existence.php ├── Expression.php ├── ExpressionLanguageProvider.php ├── ExpressionSyntax.php ├── ExpressionSyntaxValidator.php ├── ExpressionValidator.php ├── File.php ├── FileValidator.php ├── GreaterThan.php ├── GreaterThanOrEqual.php ├── GreaterThanOrEqualValidator.php ├── GreaterThanValidator.php ├── GroupSequence.php ├── GroupSequenceProvider.php ├── Hostname.php ├── HostnameValidator.php ├── Iban.php ├── IbanValidator.php ├── IdenticalTo.php ├── IdenticalToValidator.php ├── Image.php ├── ImageValidator.php ├── Ip.php ├── IpValidator.php ├── IsFalse.php ├── IsFalseValidator.php ├── IsNull.php ├── IsNullValidator.php ├── IsTrue.php ├── IsTrueValidator.php ├── Isbn.php ├── IsbnValidator.php ├── Isin.php ├── IsinValidator.php ├── Issn.php ├── IssnValidator.php ├── Json.php ├── JsonValidator.php ├── Language.php ├── LanguageValidator.php ├── Length.php ├── LengthValidator.php ├── LessThan.php ├── LessThanOrEqual.php ├── LessThanOrEqualValidator.php ├── LessThanValidator.php ├── Locale.php ├── LocaleValidator.php ├── Luhn.php ├── LuhnValidator.php ├── MacAddress.php ├── MacAddressValidator.php ├── Negative.php ├── NegativeOrZero.php ├── NoSuspiciousCharacters.php ├── NoSuspiciousCharactersValidator.php ├── NotBlank.php ├── NotBlankValidator.php ├── NotCompromisedPassword.php ├── NotCompromisedPasswordValidator.php ├── NotEqualTo.php ├── NotEqualToValidator.php ├── NotIdenticalTo.php ├── NotIdenticalToValidator.php ├── NotNull.php ├── NotNullValidator.php ├── Optional.php ├── PasswordStrength.php ├── PasswordStrengthValidator.php ├── Positive.php ├── PositiveOrZero.php ├── Range.php ├── RangeValidator.php ├── Regex.php ├── RegexValidator.php ├── Required.php ├── Sequentially.php ├── SequentiallyValidator.php ├── Time.php ├── TimeValidator.php ├── Timezone.php ├── TimezoneValidator.php ├── Traverse.php ├── Type.php ├── TypeValidator.php ├── Ulid.php ├── UlidValidator.php ├── Unique.php ├── UniqueValidator.php ├── Url.php ├── UrlValidator.php ├── Uuid.php ├── UuidValidator.php ├── Valid.php ├── ValidValidator.php ├── Week.php ├── WeekValidator.php ├── When.php ├── WhenValidator.php ├── WordCount.php ├── WordCountValidator.php ├── Yaml.php ├── YamlValidator.php └── ZeroComparisonConstraintTrait.php ├── ContainerConstraintValidatorFactory.php ├── Context ├── ExecutionContext.php ├── ExecutionContextFactory.php ├── ExecutionContextFactoryInterface.php └── ExecutionContextInterface.php ├── DataCollector └── ValidatorDataCollector.php ├── DependencyInjection ├── AddAutoMappingConfigurationPass.php ├── AddConstraintValidatorsPass.php └── AddValidatorInitializersPass.php ├── Exception ├── BadMethodCallException.php ├── ConstraintDefinitionException.php ├── ExceptionInterface.php ├── GroupDefinitionException.php ├── InvalidArgumentException.php ├── InvalidOptionsException.php ├── LogicException.php ├── MappingException.php ├── MissingOptionsException.php ├── NoSuchMetadataException.php ├── OutOfBoundsException.php ├── RuntimeException.php ├── UnexpectedTypeException.php ├── UnexpectedValueException.php ├── UnsupportedMetadataException.php ├── ValidationFailedException.php └── ValidatorException.php ├── GroupProviderInterface.php ├── GroupSequenceProviderInterface.php ├── LICENSE ├── Mapping ├── AutoMappingStrategy.php ├── CascadingStrategy.php ├── ClassMetadata.php ├── ClassMetadataInterface.php ├── Factory │ ├── BlackHoleMetadataFactory.php │ ├── LazyLoadingMetadataFactory.php │ └── MetadataFactoryInterface.php ├── GenericMetadata.php ├── GetterMetadata.php ├── Loader │ ├── AbstractLoader.php │ ├── AttributeLoader.php │ ├── AutoMappingTrait.php │ ├── FileLoader.php │ ├── FilesLoader.php │ ├── LoaderChain.php │ ├── LoaderInterface.php │ ├── PropertyInfoLoader.php │ ├── StaticMethodLoader.php │ ├── XmlFileLoader.php │ ├── XmlFilesLoader.php │ ├── YamlFileLoader.php │ ├── YamlFilesLoader.php │ └── schema │ │ └── dic │ │ └── constraint-mapping │ │ └── constraint-mapping-1.0.xsd ├── MemberMetadata.php ├── MetadataInterface.php ├── PropertyMetadata.php ├── PropertyMetadataInterface.php └── TraversalStrategy.php ├── ObjectInitializerInterface.php ├── README.md ├── Resources └── translations │ ├── validators.af.xlf │ ├── validators.ar.xlf │ ├── validators.az.xlf │ ├── validators.be.xlf │ ├── validators.bg.xlf │ ├── validators.bs.xlf │ ├── validators.ca.xlf │ ├── validators.cs.xlf │ ├── validators.cy.xlf │ ├── validators.da.xlf │ ├── validators.de.xlf │ ├── validators.el.xlf │ ├── validators.en.xlf │ ├── validators.es.xlf │ ├── validators.et.xlf │ ├── validators.eu.xlf │ ├── validators.fa.xlf │ ├── validators.fi.xlf │ ├── validators.fr.xlf │ ├── validators.gl.xlf │ ├── validators.he.xlf │ ├── validators.hr.xlf │ ├── validators.hu.xlf │ ├── validators.hy.xlf │ ├── validators.id.xlf │ ├── validators.it.xlf │ ├── validators.ja.xlf │ ├── validators.lb.xlf │ ├── validators.lt.xlf │ ├── validators.lv.xlf │ ├── validators.mk.xlf │ ├── validators.mn.xlf │ ├── validators.my.xlf │ ├── validators.nb.xlf │ ├── validators.nl.xlf │ ├── validators.nn.xlf │ ├── validators.no.xlf │ ├── validators.pl.xlf │ ├── validators.pt.xlf │ ├── validators.pt_BR.xlf │ ├── validators.ro.xlf │ ├── validators.ru.xlf │ ├── validators.sk.xlf │ ├── validators.sl.xlf │ ├── validators.sq.xlf │ ├── validators.sr_Cyrl.xlf │ ├── validators.sr_Latn.xlf │ ├── validators.sv.xlf │ ├── validators.th.xlf │ ├── validators.tl.xlf │ ├── validators.tr.xlf │ ├── validators.uk.xlf │ ├── validators.ur.xlf │ ├── validators.uz.xlf │ ├── validators.vi.xlf │ ├── validators.zh_CN.xlf │ └── validators.zh_TW.xlf ├── Test ├── CompoundConstraintTestCase.php └── ConstraintValidatorTestCase.php ├── Util └── PropertyPath.php ├── Validation.php ├── Validator ├── ContextualValidatorInterface.php ├── LazyProperty.php ├── RecursiveContextualValidator.php ├── RecursiveValidator.php ├── TraceableValidator.php └── ValidatorInterface.php ├── ValidatorBuilder.php ├── Violation ├── ConstraintViolationBuilder.php └── ConstraintViolationBuilderInterface.php └── composer.json /Attribute/HasNamedArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Attribute/HasNamedArguments.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Command/DebugCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Command/DebugCommand.php -------------------------------------------------------------------------------- /Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraint.php -------------------------------------------------------------------------------- /ConstraintValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintValidator.php -------------------------------------------------------------------------------- /ConstraintValidatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintValidatorFactory.php -------------------------------------------------------------------------------- /ConstraintValidatorFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintValidatorFactoryInterface.php -------------------------------------------------------------------------------- /ConstraintValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintValidatorInterface.php -------------------------------------------------------------------------------- /ConstraintViolation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintViolation.php -------------------------------------------------------------------------------- /ConstraintViolationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintViolationInterface.php -------------------------------------------------------------------------------- /ConstraintViolationList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintViolationList.php -------------------------------------------------------------------------------- /ConstraintViolationListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ConstraintViolationListInterface.php -------------------------------------------------------------------------------- /Constraints/AbstractComparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/AbstractComparison.php -------------------------------------------------------------------------------- /Constraints/AbstractComparisonValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/AbstractComparisonValidator.php -------------------------------------------------------------------------------- /Constraints/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/All.php -------------------------------------------------------------------------------- /Constraints/AllValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/AllValidator.php -------------------------------------------------------------------------------- /Constraints/AtLeastOneOf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/AtLeastOneOf.php -------------------------------------------------------------------------------- /Constraints/AtLeastOneOfValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/AtLeastOneOfValidator.php -------------------------------------------------------------------------------- /Constraints/Bic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Bic.php -------------------------------------------------------------------------------- /Constraints/BicValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/BicValidator.php -------------------------------------------------------------------------------- /Constraints/Blank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Blank.php -------------------------------------------------------------------------------- /Constraints/BlankValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/BlankValidator.php -------------------------------------------------------------------------------- /Constraints/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Callback.php -------------------------------------------------------------------------------- /Constraints/CallbackValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CallbackValidator.php -------------------------------------------------------------------------------- /Constraints/CardScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CardScheme.php -------------------------------------------------------------------------------- /Constraints/CardSchemeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CardSchemeValidator.php -------------------------------------------------------------------------------- /Constraints/Cascade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Cascade.php -------------------------------------------------------------------------------- /Constraints/Charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Charset.php -------------------------------------------------------------------------------- /Constraints/CharsetValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CharsetValidator.php -------------------------------------------------------------------------------- /Constraints/Choice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Choice.php -------------------------------------------------------------------------------- /Constraints/ChoiceValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ChoiceValidator.php -------------------------------------------------------------------------------- /Constraints/Cidr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Cidr.php -------------------------------------------------------------------------------- /Constraints/CidrValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CidrValidator.php -------------------------------------------------------------------------------- /Constraints/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Collection.php -------------------------------------------------------------------------------- /Constraints/CollectionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CollectionValidator.php -------------------------------------------------------------------------------- /Constraints/Composite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Composite.php -------------------------------------------------------------------------------- /Constraints/Compound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Compound.php -------------------------------------------------------------------------------- /Constraints/CompoundValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CompoundValidator.php -------------------------------------------------------------------------------- /Constraints/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Count.php -------------------------------------------------------------------------------- /Constraints/CountValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CountValidator.php -------------------------------------------------------------------------------- /Constraints/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Country.php -------------------------------------------------------------------------------- /Constraints/CountryValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CountryValidator.php -------------------------------------------------------------------------------- /Constraints/CssColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CssColor.php -------------------------------------------------------------------------------- /Constraints/CssColorValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CssColorValidator.php -------------------------------------------------------------------------------- /Constraints/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Currency.php -------------------------------------------------------------------------------- /Constraints/CurrencyValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/CurrencyValidator.php -------------------------------------------------------------------------------- /Constraints/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Date.php -------------------------------------------------------------------------------- /Constraints/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/DateTime.php -------------------------------------------------------------------------------- /Constraints/DateTimeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/DateTimeValidator.php -------------------------------------------------------------------------------- /Constraints/DateValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/DateValidator.php -------------------------------------------------------------------------------- /Constraints/DisableAutoMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/DisableAutoMapping.php -------------------------------------------------------------------------------- /Constraints/DivisibleBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/DivisibleBy.php -------------------------------------------------------------------------------- /Constraints/DivisibleByValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/DivisibleByValidator.php -------------------------------------------------------------------------------- /Constraints/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Email.php -------------------------------------------------------------------------------- /Constraints/EmailValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/EmailValidator.php -------------------------------------------------------------------------------- /Constraints/EnableAutoMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/EnableAutoMapping.php -------------------------------------------------------------------------------- /Constraints/EqualTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/EqualTo.php -------------------------------------------------------------------------------- /Constraints/EqualToValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/EqualToValidator.php -------------------------------------------------------------------------------- /Constraints/Existence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Existence.php -------------------------------------------------------------------------------- /Constraints/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Expression.php -------------------------------------------------------------------------------- /Constraints/ExpressionLanguageProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ExpressionLanguageProvider.php -------------------------------------------------------------------------------- /Constraints/ExpressionSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ExpressionSyntax.php -------------------------------------------------------------------------------- /Constraints/ExpressionSyntaxValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ExpressionSyntaxValidator.php -------------------------------------------------------------------------------- /Constraints/ExpressionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ExpressionValidator.php -------------------------------------------------------------------------------- /Constraints/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/File.php -------------------------------------------------------------------------------- /Constraints/FileValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/FileValidator.php -------------------------------------------------------------------------------- /Constraints/GreaterThan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/GreaterThan.php -------------------------------------------------------------------------------- /Constraints/GreaterThanOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/GreaterThanOrEqual.php -------------------------------------------------------------------------------- /Constraints/GreaterThanOrEqualValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/GreaterThanOrEqualValidator.php -------------------------------------------------------------------------------- /Constraints/GreaterThanValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/GreaterThanValidator.php -------------------------------------------------------------------------------- /Constraints/GroupSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/GroupSequence.php -------------------------------------------------------------------------------- /Constraints/GroupSequenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/GroupSequenceProvider.php -------------------------------------------------------------------------------- /Constraints/Hostname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Hostname.php -------------------------------------------------------------------------------- /Constraints/HostnameValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/HostnameValidator.php -------------------------------------------------------------------------------- /Constraints/Iban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Iban.php -------------------------------------------------------------------------------- /Constraints/IbanValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IbanValidator.php -------------------------------------------------------------------------------- /Constraints/IdenticalTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IdenticalTo.php -------------------------------------------------------------------------------- /Constraints/IdenticalToValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IdenticalToValidator.php -------------------------------------------------------------------------------- /Constraints/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Image.php -------------------------------------------------------------------------------- /Constraints/ImageValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ImageValidator.php -------------------------------------------------------------------------------- /Constraints/Ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Ip.php -------------------------------------------------------------------------------- /Constraints/IpValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IpValidator.php -------------------------------------------------------------------------------- /Constraints/IsFalse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsFalse.php -------------------------------------------------------------------------------- /Constraints/IsFalseValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsFalseValidator.php -------------------------------------------------------------------------------- /Constraints/IsNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsNull.php -------------------------------------------------------------------------------- /Constraints/IsNullValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsNullValidator.php -------------------------------------------------------------------------------- /Constraints/IsTrue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsTrue.php -------------------------------------------------------------------------------- /Constraints/IsTrueValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsTrueValidator.php -------------------------------------------------------------------------------- /Constraints/Isbn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Isbn.php -------------------------------------------------------------------------------- /Constraints/IsbnValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsbnValidator.php -------------------------------------------------------------------------------- /Constraints/Isin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Isin.php -------------------------------------------------------------------------------- /Constraints/IsinValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IsinValidator.php -------------------------------------------------------------------------------- /Constraints/Issn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Issn.php -------------------------------------------------------------------------------- /Constraints/IssnValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/IssnValidator.php -------------------------------------------------------------------------------- /Constraints/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Json.php -------------------------------------------------------------------------------- /Constraints/JsonValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/JsonValidator.php -------------------------------------------------------------------------------- /Constraints/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Language.php -------------------------------------------------------------------------------- /Constraints/LanguageValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LanguageValidator.php -------------------------------------------------------------------------------- /Constraints/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Length.php -------------------------------------------------------------------------------- /Constraints/LengthValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LengthValidator.php -------------------------------------------------------------------------------- /Constraints/LessThan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LessThan.php -------------------------------------------------------------------------------- /Constraints/LessThanOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LessThanOrEqual.php -------------------------------------------------------------------------------- /Constraints/LessThanOrEqualValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LessThanOrEqualValidator.php -------------------------------------------------------------------------------- /Constraints/LessThanValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LessThanValidator.php -------------------------------------------------------------------------------- /Constraints/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Locale.php -------------------------------------------------------------------------------- /Constraints/LocaleValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LocaleValidator.php -------------------------------------------------------------------------------- /Constraints/Luhn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Luhn.php -------------------------------------------------------------------------------- /Constraints/LuhnValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/LuhnValidator.php -------------------------------------------------------------------------------- /Constraints/MacAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/MacAddress.php -------------------------------------------------------------------------------- /Constraints/MacAddressValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/MacAddressValidator.php -------------------------------------------------------------------------------- /Constraints/Negative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Negative.php -------------------------------------------------------------------------------- /Constraints/NegativeOrZero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NegativeOrZero.php -------------------------------------------------------------------------------- /Constraints/NoSuspiciousCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NoSuspiciousCharacters.php -------------------------------------------------------------------------------- /Constraints/NoSuspiciousCharactersValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NoSuspiciousCharactersValidator.php -------------------------------------------------------------------------------- /Constraints/NotBlank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotBlank.php -------------------------------------------------------------------------------- /Constraints/NotBlankValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotBlankValidator.php -------------------------------------------------------------------------------- /Constraints/NotCompromisedPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotCompromisedPassword.php -------------------------------------------------------------------------------- /Constraints/NotCompromisedPasswordValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotCompromisedPasswordValidator.php -------------------------------------------------------------------------------- /Constraints/NotEqualTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotEqualTo.php -------------------------------------------------------------------------------- /Constraints/NotEqualToValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotEqualToValidator.php -------------------------------------------------------------------------------- /Constraints/NotIdenticalTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotIdenticalTo.php -------------------------------------------------------------------------------- /Constraints/NotIdenticalToValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotIdenticalToValidator.php -------------------------------------------------------------------------------- /Constraints/NotNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotNull.php -------------------------------------------------------------------------------- /Constraints/NotNullValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/NotNullValidator.php -------------------------------------------------------------------------------- /Constraints/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Optional.php -------------------------------------------------------------------------------- /Constraints/PasswordStrength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/PasswordStrength.php -------------------------------------------------------------------------------- /Constraints/PasswordStrengthValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/PasswordStrengthValidator.php -------------------------------------------------------------------------------- /Constraints/Positive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Positive.php -------------------------------------------------------------------------------- /Constraints/PositiveOrZero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/PositiveOrZero.php -------------------------------------------------------------------------------- /Constraints/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Range.php -------------------------------------------------------------------------------- /Constraints/RangeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/RangeValidator.php -------------------------------------------------------------------------------- /Constraints/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Regex.php -------------------------------------------------------------------------------- /Constraints/RegexValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/RegexValidator.php -------------------------------------------------------------------------------- /Constraints/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Required.php -------------------------------------------------------------------------------- /Constraints/Sequentially.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Sequentially.php -------------------------------------------------------------------------------- /Constraints/SequentiallyValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/SequentiallyValidator.php -------------------------------------------------------------------------------- /Constraints/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Time.php -------------------------------------------------------------------------------- /Constraints/TimeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/TimeValidator.php -------------------------------------------------------------------------------- /Constraints/Timezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Timezone.php -------------------------------------------------------------------------------- /Constraints/TimezoneValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/TimezoneValidator.php -------------------------------------------------------------------------------- /Constraints/Traverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Traverse.php -------------------------------------------------------------------------------- /Constraints/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Type.php -------------------------------------------------------------------------------- /Constraints/TypeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/TypeValidator.php -------------------------------------------------------------------------------- /Constraints/Ulid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Ulid.php -------------------------------------------------------------------------------- /Constraints/UlidValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/UlidValidator.php -------------------------------------------------------------------------------- /Constraints/Unique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Unique.php -------------------------------------------------------------------------------- /Constraints/UniqueValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/UniqueValidator.php -------------------------------------------------------------------------------- /Constraints/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Url.php -------------------------------------------------------------------------------- /Constraints/UrlValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/UrlValidator.php -------------------------------------------------------------------------------- /Constraints/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Uuid.php -------------------------------------------------------------------------------- /Constraints/UuidValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/UuidValidator.php -------------------------------------------------------------------------------- /Constraints/Valid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Valid.php -------------------------------------------------------------------------------- /Constraints/ValidValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ValidValidator.php -------------------------------------------------------------------------------- /Constraints/Week.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Week.php -------------------------------------------------------------------------------- /Constraints/WeekValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/WeekValidator.php -------------------------------------------------------------------------------- /Constraints/When.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/When.php -------------------------------------------------------------------------------- /Constraints/WhenValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/WhenValidator.php -------------------------------------------------------------------------------- /Constraints/WordCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/WordCount.php -------------------------------------------------------------------------------- /Constraints/WordCountValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/WordCountValidator.php -------------------------------------------------------------------------------- /Constraints/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/Yaml.php -------------------------------------------------------------------------------- /Constraints/YamlValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/YamlValidator.php -------------------------------------------------------------------------------- /Constraints/ZeroComparisonConstraintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Constraints/ZeroComparisonConstraintTrait.php -------------------------------------------------------------------------------- /ContainerConstraintValidatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ContainerConstraintValidatorFactory.php -------------------------------------------------------------------------------- /Context/ExecutionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Context/ExecutionContext.php -------------------------------------------------------------------------------- /Context/ExecutionContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Context/ExecutionContextFactory.php -------------------------------------------------------------------------------- /Context/ExecutionContextFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Context/ExecutionContextFactoryInterface.php -------------------------------------------------------------------------------- /Context/ExecutionContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Context/ExecutionContextInterface.php -------------------------------------------------------------------------------- /DataCollector/ValidatorDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/DataCollector/ValidatorDataCollector.php -------------------------------------------------------------------------------- /DependencyInjection/AddAutoMappingConfigurationPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/DependencyInjection/AddAutoMappingConfigurationPass.php -------------------------------------------------------------------------------- /DependencyInjection/AddConstraintValidatorsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/DependencyInjection/AddConstraintValidatorsPass.php -------------------------------------------------------------------------------- /DependencyInjection/AddValidatorInitializersPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/DependencyInjection/AddValidatorInitializersPass.php -------------------------------------------------------------------------------- /Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/BadMethodCallException.php -------------------------------------------------------------------------------- /Exception/ConstraintDefinitionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/ConstraintDefinitionException.php -------------------------------------------------------------------------------- /Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /Exception/GroupDefinitionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/GroupDefinitionException.php -------------------------------------------------------------------------------- /Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /Exception/InvalidOptionsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/InvalidOptionsException.php -------------------------------------------------------------------------------- /Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/LogicException.php -------------------------------------------------------------------------------- /Exception/MappingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/MappingException.php -------------------------------------------------------------------------------- /Exception/MissingOptionsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/MissingOptionsException.php -------------------------------------------------------------------------------- /Exception/NoSuchMetadataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/NoSuchMetadataException.php -------------------------------------------------------------------------------- /Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/OutOfBoundsException.php -------------------------------------------------------------------------------- /Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/RuntimeException.php -------------------------------------------------------------------------------- /Exception/UnexpectedTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/UnexpectedTypeException.php -------------------------------------------------------------------------------- /Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/UnexpectedValueException.php -------------------------------------------------------------------------------- /Exception/UnsupportedMetadataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/UnsupportedMetadataException.php -------------------------------------------------------------------------------- /Exception/ValidationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/ValidationFailedException.php -------------------------------------------------------------------------------- /Exception/ValidatorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Exception/ValidatorException.php -------------------------------------------------------------------------------- /GroupProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/GroupProviderInterface.php -------------------------------------------------------------------------------- /GroupSequenceProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/GroupSequenceProviderInterface.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/LICENSE -------------------------------------------------------------------------------- /Mapping/AutoMappingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/AutoMappingStrategy.php -------------------------------------------------------------------------------- /Mapping/CascadingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/CascadingStrategy.php -------------------------------------------------------------------------------- /Mapping/ClassMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/ClassMetadata.php -------------------------------------------------------------------------------- /Mapping/ClassMetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/ClassMetadataInterface.php -------------------------------------------------------------------------------- /Mapping/Factory/BlackHoleMetadataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Factory/BlackHoleMetadataFactory.php -------------------------------------------------------------------------------- /Mapping/Factory/LazyLoadingMetadataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Factory/LazyLoadingMetadataFactory.php -------------------------------------------------------------------------------- /Mapping/Factory/MetadataFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Factory/MetadataFactoryInterface.php -------------------------------------------------------------------------------- /Mapping/GenericMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/GenericMetadata.php -------------------------------------------------------------------------------- /Mapping/GetterMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/GetterMetadata.php -------------------------------------------------------------------------------- /Mapping/Loader/AbstractLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/AbstractLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/AttributeLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/AttributeLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/AutoMappingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/AutoMappingTrait.php -------------------------------------------------------------------------------- /Mapping/Loader/FileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/FileLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/FilesLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/FilesLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/LoaderChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/LoaderChain.php -------------------------------------------------------------------------------- /Mapping/Loader/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/LoaderInterface.php -------------------------------------------------------------------------------- /Mapping/Loader/PropertyInfoLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/PropertyInfoLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/StaticMethodLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/StaticMethodLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/XmlFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/XmlFileLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/XmlFilesLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/XmlFilesLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/YamlFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/YamlFileLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/YamlFilesLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/YamlFilesLoader.php -------------------------------------------------------------------------------- /Mapping/Loader/schema/dic/constraint-mapping/constraint-mapping-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/Loader/schema/dic/constraint-mapping/constraint-mapping-1.0.xsd -------------------------------------------------------------------------------- /Mapping/MemberMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/MemberMetadata.php -------------------------------------------------------------------------------- /Mapping/MetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/MetadataInterface.php -------------------------------------------------------------------------------- /Mapping/PropertyMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/PropertyMetadata.php -------------------------------------------------------------------------------- /Mapping/PropertyMetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/PropertyMetadataInterface.php -------------------------------------------------------------------------------- /Mapping/TraversalStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Mapping/TraversalStrategy.php -------------------------------------------------------------------------------- /ObjectInitializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ObjectInitializerInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/README.md -------------------------------------------------------------------------------- /Resources/translations/validators.af.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.af.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.ar.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.ar.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.az.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.az.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.be.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.be.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.bg.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.bg.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.bs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.bs.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.ca.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.ca.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.cs.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.cy.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.cy.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.da.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.da.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.de.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.el.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.el.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.en.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.es.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.et.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.et.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.eu.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.eu.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.fa.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.fa.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.fi.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.fi.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.fr.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.gl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.gl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.he.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.he.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.hr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.hr.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.hu.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.hu.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.hy.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.hy.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.id.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.id.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.it.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.ja.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.lb.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.lb.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.lt.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.lt.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.lv.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.lv.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.mk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.mk.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.mn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.mn.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.my.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.my.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.nb.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.nb.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.nl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.nn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.nn.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.no.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.no.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.pl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.pt.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.pt.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.pt_BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.pt_BR.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.ro.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.ro.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.ru.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.sk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.sk.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.sl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.sl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.sq.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.sq.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.sr_Cyrl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.sr_Cyrl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.sr_Latn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.sr_Latn.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.sv.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.sv.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.th.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.th.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.tl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.tl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.tr.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.uk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.uk.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.ur.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.ur.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.uz.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.uz.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.vi.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.vi.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.zh_CN.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.zh_CN.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.zh_TW.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Resources/translations/validators.zh_TW.xlf -------------------------------------------------------------------------------- /Test/CompoundConstraintTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Test/CompoundConstraintTestCase.php -------------------------------------------------------------------------------- /Test/ConstraintValidatorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Test/ConstraintValidatorTestCase.php -------------------------------------------------------------------------------- /Util/PropertyPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Util/PropertyPath.php -------------------------------------------------------------------------------- /Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validation.php -------------------------------------------------------------------------------- /Validator/ContextualValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validator/ContextualValidatorInterface.php -------------------------------------------------------------------------------- /Validator/LazyProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validator/LazyProperty.php -------------------------------------------------------------------------------- /Validator/RecursiveContextualValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validator/RecursiveContextualValidator.php -------------------------------------------------------------------------------- /Validator/RecursiveValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validator/RecursiveValidator.php -------------------------------------------------------------------------------- /Validator/TraceableValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validator/TraceableValidator.php -------------------------------------------------------------------------------- /Validator/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Validator/ValidatorInterface.php -------------------------------------------------------------------------------- /ValidatorBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/ValidatorBuilder.php -------------------------------------------------------------------------------- /Violation/ConstraintViolationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Violation/ConstraintViolationBuilder.php -------------------------------------------------------------------------------- /Violation/ConstraintViolationBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/Violation/ConstraintViolationBuilderInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/validator/HEAD/composer.json --------------------------------------------------------------------------------