mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-17 18:54:07 +00:00
47 lines
995 B
JSON
47 lines
995 B
JSON
{
|
|
"name": "egulias/email-validator",
|
|
"description": "A library for validating emails against several RFCs",
|
|
"homepage": "https://github.com/egulias/EmailValidator",
|
|
"keywords": [
|
|
"email",
|
|
"validation",
|
|
"validator",
|
|
"emailvalidation",
|
|
"emailvalidator"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Eduardo Gulias Davis"
|
|
}
|
|
],
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "4.0.x-dev"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"doctrine/lexer": "^3.0",
|
|
"symfony/polyfill-intl-idn": "^1.15"
|
|
},
|
|
"require-dev": {
|
|
"php-coveralls/php-coveralls": "^2.2",
|
|
"phpunit/phpunit": "^8.5.8|^9.3.3",
|
|
"vimeo/psalm": "^4"
|
|
},
|
|
"suggest": {
|
|
"ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Egulias\\EmailValidator\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Egulias\\EmailValidator\\Tests\\": "tests"
|
|
}
|
|
}
|
|
}
|