Drupal investigation

composer.json 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "doctrine/cache",
  3. "type": "library",
  4. "description": "Caching library offering an object-oriented API for many cache backends",
  5. "keywords": ["cache", "caching"],
  6. "homepage": "http://www.doctrine-project.org",
  7. "license": "MIT",
  8. "authors": [
  9. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  10. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  11. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  12. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  13. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  14. ],
  15. "require": {
  16. "php": "~5.5|~7.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.8|~5.0",
  20. "satooshi/php-coveralls": "~0.6",
  21. "predis/predis": "~1.0"
  22. },
  23. "conflict": {
  24. "doctrine/common": ">2.2,<2.4"
  25. },
  26. "autoload": {
  27. "psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" }
  28. },
  29. "autoload-dev": {
  30. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.6.x-dev"
  35. }
  36. }
  37. }