composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "illuminate/cache",
  3. "description": "The Illuminate Cache 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.1",
  18. "illuminate/collections": "^10.0",
  19. "illuminate/contracts": "^10.0",
  20. "illuminate/macroable": "^10.0",
  21. "illuminate/support": "^10.0"
  22. },
  23. "provide": {
  24. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Illuminate\\Cache\\": ""
  29. }
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "10.x-dev"
  34. }
  35. },
  36. "suggest": {
  37. "ext-apcu": "Required to use the APC cache driver.",
  38. "ext-filter": "Required to use the DynamoDb cache driver.",
  39. "ext-memcached": "Required to use the memcache cache driver.",
  40. "illuminate/database": "Required to use the database cache driver (^10.0).",
  41. "illuminate/filesystem": "Required to use the file cache driver (^10.0).",
  42. "illuminate/redis": "Required to use the redis cache driver (^10.0).",
  43. "symfony/cache": "Required to use PSR-6 cache bridge (^6.2)."
  44. },
  45. "config": {
  46. "sort-packages": true
  47. },
  48. "minimum-stability": "dev"
  49. }