123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "symfony/validator",
- "type": "library",
- "description": "Provides tools to validate values",
- "keywords": [],
- "homepage": "https://symfony.com",
- "license": "MIT",
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php73": "~1.0",
- "symfony/polyfill-php80": "^1.15",
- "symfony/translation-contracts": "^1.1|^2"
- },
- "require-dev": {
- "symfony/console": "^4.4|^5.0",
- "symfony/finder": "^4.4|^5.0",
- "symfony/http-client": "^4.4|^5.0",
- "symfony/http-foundation": "^4.4|^5.0",
- "symfony/http-kernel": "^4.4|^5.0",
- "symfony/intl": "^4.4|^5.0",
- "symfony/yaml": "^4.4|^5.0",
- "symfony/config": "^4.4|^5.0",
- "symfony/dependency-injection": "^4.4|^5.0",
- "symfony/expression-language": "^5.1",
- "symfony/cache": "^4.4|^5.0",
- "symfony/mime": "^4.4|^5.0",
- "symfony/property-access": "^4.4|^5.0",
- "symfony/property-info": "^4.4|^5.0",
- "symfony/translation": "^4.4|^5.0",
- "doctrine/annotations": "^1.10.4",
- "doctrine/cache": "~1.0",
- "egulias/email-validator": "^2.1.10|^3"
- },
- "conflict": {
- "doctrine/lexer": "<1.0.2",
- "phpunit/phpunit": "<5.4.3",
- "symfony/dependency-injection": "<4.4",
- "symfony/expression-language": "<5.1",
- "symfony/http-kernel": "<4.4",
- "symfony/intl": "<4.4",
- "symfony/translation": "<4.4",
- "symfony/yaml": "<4.4"
- },
- "suggest": {
- "psr/cache-implementation": "For using the mapping cache.",
- "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
- "doctrine/cache": "For using the default cached annotation reader.",
- "symfony/http-foundation": "",
- "symfony/intl": "",
- "symfony/translation": "For translating validation errors.",
- "symfony/yaml": "",
- "symfony/config": "",
- "egulias/email-validator": "Strict (RFC compliant) email validation",
- "symfony/property-access": "For accessing properties within comparison constraints",
- "symfony/property-info": "To automatically add NotNull and Type constraints",
- "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints"
- },
- "autoload": {
- "psr-4": { "Symfony\\Component\\Validator\\": "" },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "minimum-stability": "dev"
- }
|