composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "cache/adapter-common",
  3. "description": "Common classes for PSR-6 adapters",
  4. "type": "library",
  5. "license": "MIT",
  6. "minimum-stability": "dev",
  7. "prefer-stable": true,
  8. "keywords": [
  9. "cache",
  10. "psr-6",
  11. "tag"
  12. ],
  13. "homepage": "http://www.php-cache.com/en/latest/",
  14. "authors": [
  15. {
  16. "name": "Aaron Scherer",
  17. "email": "aequasi@gmail.com",
  18. "homepage": "https://github.com/aequasi"
  19. },
  20. {
  21. "name": "Tobias Nyholm",
  22. "email": "tobias.nyholm@gmail.com",
  23. "homepage": "https://github.com/nyholm"
  24. }
  25. ],
  26. "require": {
  27. "php": "^5.6 || ^7.0",
  28. "psr/cache": "^1.0",
  29. "psr/simple-cache": "^1.0",
  30. "psr/log": "^1.0",
  31. "cache/tag-interop": "^1.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^5.7.21",
  35. "cache/integration-tests": "^0.16"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Cache\\Adapter\\Common\\": ""
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Cache\\Adapter\\Common\\Tests\\": "Tests/"
  45. },
  46. "exclude-from-classmap": [
  47. "/Tests/"
  48. ]
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "1.1-dev"
  53. }
  54. }
  55. }