composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "illuminate/redis",
  3. "description": "The Illuminate Redis 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. "illuminate/collections": "^12.0",
  19. "illuminate/contracts": "^12.0",
  20. "illuminate/macroable": "^12.0",
  21. "illuminate/support": "^12.0"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Illuminate\\Redis\\": ""
  26. }
  27. },
  28. "suggest": {
  29. "ext-redis": "Required to use the phpredis connector (^4.0|^5.0|^6.0).",
  30. "predis/predis": "Required to use the predis connector (^2.3|^3.0)."
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "12.x-dev"
  35. }
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "minimum-stability": "dev"
  41. }