composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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, proxies 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 || ^8.0",
  22. "doctrine/persistence": "^2.0"
  23. },
  24. "require-dev": {
  25. "phpstan/phpstan": "^0.12",
  26. "phpstan/phpstan-phpunit": "^0.12",
  27. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  28. "doctrine/coding-standard": "^6.0 || ^8.0",
  29. "squizlabs/php_codesniffer": "^3.0",
  30. "symfony/phpunit-bridge": "^4.0.5",
  31. "vimeo/psalm": "^4.4"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Doctrine\\Common\\": "lib/Doctrine/Common"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  41. }
  42. }
  43. }