You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
996 B

3 years ago
  1. {
  2. "name": "egulias/email-validator",
  3. "description": "A library for validating emails against several RFCs",
  4. "homepage": "https://github.com/egulias/EmailValidator",
  5. "keywords": ["email", "validation", "validator", "emailvalidation", "emailvalidator"],
  6. "license": "MIT",
  7. "authors": [
  8. {"name": "Eduardo Gulias Davis"}
  9. ],
  10. "extra": {
  11. "branch-alias": {
  12. "dev-master": "2.1.x-dev"
  13. }
  14. },
  15. "require": {
  16. "php": ">=5.5",
  17. "doctrine/lexer": "^1.0.1",
  18. "symfony/polyfill-intl-idn": "^1.10"
  19. },
  20. "require-dev": {
  21. "dominicsayers/isemail": "^3.0.7",
  22. "phpunit/phpunit": "^4.8.36|^7.5.15",
  23. "satooshi/php-coveralls": "^1.0.1"
  24. },
  25. "suggest": {
  26. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Egulias\\EmailValidator\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Egulias\\EmailValidator\\Tests\\": "tests"
  36. }
  37. }
  38. }