composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "doctrine/common",
  3. "type": "library",
  4. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  5. "keywords": [
  6. "php",
  7. "common",
  8. "doctrine"
  9. ],
  10. "homepage": "https://www.doctrine-project.org/projects/common.html",
  11. "license": "MIT",
  12. "authors": [
  13. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  14. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  15. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  16. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  17. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"},
  18. {"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
  19. ],
  20. "require": {
  21. "php": "^7.1",
  22. "doctrine/inflector": "^1.0",
  23. "doctrine/cache": "^1.0",
  24. "doctrine/collections": "^1.0",
  25. "doctrine/lexer": "^1.0",
  26. "doctrine/annotations": "^1.0",
  27. "doctrine/event-manager": "^1.0",
  28. "doctrine/reflection": "^1.0",
  29. "doctrine/persistence": "^1.1"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^6.3",
  33. "doctrine/coding-standard": "^1.0",
  34. "squizlabs/php_codesniffer": "^3.0",
  35. "symfony/phpunit-bridge": "^4.0.5"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Doctrine\\Common\\": "lib/Doctrine/Common"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  45. }
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "2.10.x-dev"
  50. }
  51. }
  52. }