Drupal investigation

composer.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "doctrine/common",
  3. "type": "library",
  4. "description": "Common Library for Doctrine projects",
  5. "keywords": ["collections", "spl", "eventmanager", "annotations", "persistence"],
  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. "doctrine/inflector": "1.*",
  18. "doctrine/cache": "1.*",
  19. "doctrine/collections": "1.*",
  20. "doctrine/lexer": "1.*",
  21. "doctrine/annotations": "1.*"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "~4.8|~5.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Doctrine\\Common\\": "lib/Doctrine/Common"
  29. }
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "2.7.x-dev"
  34. }
  35. }
  36. }