You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB

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