This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator
Nicolas Grekas ec6b2801ec Merge branch '5.1'
* 5.1: (36 commits)
  Fixed left-over debug statement
  set column length for mysql 5.6 compatibility
  [Mime] Remove unused var
  [HttpClient] fix monitoring timeouts when other streams are active
  [PhpUnitBridge] fix syntax on PHP 5.3
  [PhpUnitBridge] Fix undefined index when output of "composer show" cannot be parsed
  properly cascade validation to child forms
  [PropertyAccess] Fix getter call order BC
  [PhpUnitBridge] fix undefined var on version 3.4
  Fix invalid char in SQS Headers
  Move ajax clear event listener initialization on loadToolbar
  [HttpClient] Throw JsonException instead of TransportException on empty response in Response::toArray()
  Fix CS
  FrameworkBundle Serializer issue
  register event listeners depending on the installed packages
  take into account the context when preserving empty array objects
  Only register CSRF protection listener if CSRF is available
  [VarExporter] tfix: s/markAsSkipped/markTestSkipped/
  Also check PUBLIC_ACCESS for authenticated tokens
  Fix enabled_locales behavior
  ...
2020-06-07 17:48:04 +02:00
..
Constraints Merge branch '5.1' 2020-05-30 23:59:47 +02:00
Context Merge branch '4.4' into 5.0 2020-04-01 08:31:30 +02:00
DataCollector Fix some \Throwable support remaining issues 2019-11-12 18:18:47 +01:00
DependencyInjection Merge branch '4.4' into 5.0 2019-12-17 11:33:13 +01:00
Exception Leverage PHP8's get_debug_type() 2020-03-16 17:46:21 +01:00
Mapping Merge branch '5.0' 2020-05-04 17:54:21 +02:00
Resources/translations [Validator] add missing Czech translations 2020-05-27 12:08:15 +02:00
Test [Validator] Add AtLeastOne constraint and validator 2020-03-16 07:29:18 +01:00
Tests Merge branch '5.1' 2020-06-07 17:48:04 +02:00
Util Merge branch '4.3' into 4.4 2019-10-28 21:30:34 +01:00
Validator Merge branch '5.0' into 5.1 2020-05-30 22:35:19 +02:00
Violation Fix quotes in exception messages 2020-03-16 12:24:17 +01:00
.gitattributes add missing gitattributes for phpunit-bridge 2020-03-27 17:54:36 +01:00
.gitignore
CHANGELOG.md deprecate the "allowEmptyString" option 2020-05-22 15:23:49 +02:00
composer.json deprecate the "allowEmptyString" option 2020-05-22 15:23:49 +02:00
Constraint.php [Validator] Allow to define a reusable set of constraints 2020-02-08 08:09:33 +01:00
ConstraintValidator.php Leverage PHP8's get_debug_type() 2020-03-16 17:46:21 +01:00
ConstraintValidatorFactory.php switched array() to [] 2019-01-16 10:39:14 +01:00
ConstraintValidatorFactoryInterface.php [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
ConstraintValidatorInterface.php Remove unneeded phpdocs 2019-08-08 11:37:48 +02:00
ConstraintViolation.php Merge branch '4.4' into 5.0 2020-03-13 11:39:51 +01:00
ConstraintViolationInterface.php [Validator] clarify stringable type annotations 2020-03-13 11:25:23 +01:00
ConstraintViolationList.php Merge branch '4.4' 2019-08-22 15:39:30 +02:00
ConstraintViolationListInterface.php Merge branch '4.4' 2019-08-08 11:49:33 +02:00
ContainerConstraintValidatorFactory.php Leverage PHP8's get_debug_type() 2020-03-16 17:46:21 +01:00
GroupSequenceProviderInterface.php [Validator] Fix GroupSequenceProvider annotation 2019-06-20 08:43:29 +02:00
LICENSE Update year in license files 2020-01-01 12:03:25 +01:00
ObjectInitializerInterface.php add parameter type hints to the Validator component 2019-06-28 18:24:33 +02:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md Add HTTPS to a URL 2019-07-14 15:17:28 +04:30
Validation.php [Validator] allow passing a validator to Validation::createCallable() 2020-05-18 18:55:18 +02:00
ValidatorBuilder.php Merge branch '4.4' into 5.0 2020-03-18 09:00:37 +01:00

Validator Component

The Validator component provides tools to validate values following the JSR-303 Bean Validation specification.

Resources