composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 || ^8.0",
  24. "doctrine/annotations": "^1.0",
  25. "doctrine/cache": "^1.0",
  26. "doctrine/collections": "^1.0",
  27. "doctrine/event-manager": "^1.0"
  28. },
  29. "require-dev": {
  30. "composer/package-versions-deprecated": "^1.11",
  31. "phpstan/phpstan": "^0.12",
  32. "doctrine/coding-standard": "^6.0 || ^8.0",
  33. "doctrine/common": "^3.0",
  34. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  35. "vimeo/psalm": "^3.11"
  36. },
  37. "conflict": {
  38. "doctrine/common": "<2.10@dev"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Doctrine\\Common\\": "lib/Doctrine/Common",
  43. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  44. }
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "Doctrine\\Tests\\": "tests/Doctrine/Tests",
  49. "Doctrine\\Tests_PHP74\\": "tests/Doctrine/Tests_PHP74"
  50. }
  51. }
  52. }