composer.json 513 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "psr/cache",
  3. "description": "Common interface for caching libraries",
  4. "keywords": ["psr", "psr-6", "cache"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "PHP-FIG",
  9. "homepage": "http://www.php-fig.org/"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.3.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Psr\\Cache\\": "src/"
  18. }
  19. },
  20. "extra": {
  21. "branch-alias": {
  22. "dev-master": "1.0.x-dev"
  23. }
  24. }
  25. }