composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "prettus/laravel-validation",
  3. "description": "Laravel Validation Service",
  4. "keywords": [
  5. "laravel",
  6. "validation",
  7. "service"
  8. ],
  9. "authors": [
  10. {
  11. "name": "Anderson Andrade",
  12. "homepage": "http://andersonandra.de",
  13. "email": "contato@andersonandra.de",
  14. "role": "Developer"
  15. }
  16. ],
  17. "homepage": "http://andersao.github.io/laravel-validation",
  18. "support": {
  19. "email": "contato@andersonandra.de",
  20. "issues": "https://github.com/andersao/laravel-validation/issues",
  21. "wiki": "https://github.com/andersao/laravel-validation",
  22. "source": "https://github.com/andersao/laravel-validation",
  23. "docs": "http://andersao.github.io/laravel-validation"
  24. },
  25. "require": {
  26. "php": ">=5.4.0",
  27. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
  28. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Prettus\\Validator\\": "src/Prettus/Validator/"
  33. }
  34. },
  35. "minimum-stability": "stable"
  36. }