composer.json 1.3 KB

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