composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "illuminate/validation",
  3. "description": "The Illuminate Validation package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "authors": [
  11. {
  12. "name": "Taylor Otwell",
  13. "email": "taylor@laravel.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^8.2",
  18. "ext-filter": "*",
  19. "ext-mbstring": "*",
  20. "brick/math": "^0.11|^0.12|^0.13|^0.14",
  21. "egulias/email-validator": "^3.2.5|^4.0",
  22. "illuminate/collections": "^12.0",
  23. "illuminate/container": "^12.0",
  24. "illuminate/contracts": "^12.0",
  25. "illuminate/macroable": "^12.0",
  26. "illuminate/support": "^12.0",
  27. "illuminate/translation": "^12.0",
  28. "symfony/http-foundation": "^7.2",
  29. "symfony/mime": "^7.2",
  30. "symfony/polyfill-php83": "^1.33"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Illuminate\\Validation\\": ""
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "12.x-dev"
  40. }
  41. },
  42. "suggest": {
  43. "illuminate/database": "Required to use the database presence verifier (^12.0).",
  44. "ramsey/uuid": "Required to use Validator::validateUuid() (^4.7)."
  45. },
  46. "config": {
  47. "sort-packages": true
  48. },
  49. "minimum-stability": "dev"
  50. }