composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "predis/predis",
  3. "type": "library",
  4. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  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": ">=5.3.9"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "~4.8"
  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. "scripts": {
  46. "post-update-cmd": "@php -f tests/apply-patches.php"
  47. }
  48. }