composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "predis/predis",
  3. "type": "library",
  4. "description": "A flexible and feature-complete Redis client for PHP.",
  5. "keywords": ["nosql", "redis", "predis"],
  6. "homepage": "http://github.com/predis/predis",
  7. "license": "MIT",
  8. "support": {
  9. "issues": "https://github.com/predis/predis/issues"
  10. },
  11. "authors": [
  12. {
  13. "name": "Daniele Alessandri",
  14. "email": "suppakilla@gmail.com",
  15. "homepage": "http://clorophilla.net",
  16. "role": "Creator & Maintainer"
  17. },
  18. {
  19. "name": "Till Krüss",
  20. "homepage": "https://till.im",
  21. "role": "Maintainer"
  22. }
  23. ],
  24. "funding": [
  25. {
  26. "type": "github",
  27. "url": "https://github.com/sponsors/tillkruss"
  28. }
  29. ],
  30. "require": {
  31. "php": "^7.2 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^8.0 || ~9.4.4"
  35. },
  36. "suggest": {
  37. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
  38. "ext-curl": "Allows access to Webdis when paired with phpiredis"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Predis\\": "src/"
  43. }
  44. },
  45. "extra": {
  46. "branch-alias": {
  47. "dev-main": "2.0-dev"
  48. }
  49. }
  50. }