composer.json 1.4 KB

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