composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "doctrine/persistence",
  3. "type": "library",
  4. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  5. "keywords": [
  6. "persistence",
  7. "object",
  8. "mapper",
  9. "orm",
  10. "odm"
  11. ],
  12. "homepage": "https://doctrine-project.org/projects/persistence.html",
  13. "license": "MIT",
  14. "authors": [
  15. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  16. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  17. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  18. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  19. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"},
  20. {"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
  21. ],
  22. "require": {
  23. "php": "^7.1",
  24. "doctrine/annotations": "^1.0",
  25. "doctrine/cache": "^1.0",
  26. "doctrine/collections": "^1.0",
  27. "doctrine/event-manager": "^1.0",
  28. "doctrine/reflection": "^1.0"
  29. },
  30. "require-dev": {
  31. "phpstan/phpstan": "^0.8",
  32. "doctrine/coding-standard": "^5.0",
  33. "phpunit/phpunit": "^7.0"
  34. },
  35. "conflict": {
  36. "doctrine/common": "<2.10@dev"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Doctrine\\Common\\": "lib/Doctrine/Common"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  46. }
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "1.1.x-dev"
  51. }
  52. }
  53. }