composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "doctrine/orm",
  3. "type": "library",
  4. "description": "Object-Relational-Mapper for PHP",
  5. "keywords": ["orm", "database"],
  6. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  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": "Marco Pivetta", "email": "ocramius@gmail.com"}
  14. ],
  15. "config": {
  16. "sort-packages": true
  17. },
  18. "require": {
  19. "php": "^7.2|^8.0",
  20. "ext-pdo": "*",
  21. "composer/package-versions-deprecated": "^1.8",
  22. "doctrine/annotations": "^1.11.1",
  23. "doctrine/cache": "^1.9.1",
  24. "doctrine/collections": "^1.5",
  25. "doctrine/common": "^3.0.3",
  26. "doctrine/dbal": "^2.10.0",
  27. "doctrine/event-manager": "^1.1",
  28. "doctrine/inflector": "^1.4|^2.0",
  29. "doctrine/instantiator": "^1.3",
  30. "doctrine/lexer": "^1.0",
  31. "doctrine/persistence": "^2.0",
  32. "symfony/console": "^3.0|^4.0|^5.0"
  33. },
  34. "require-dev": {
  35. "doctrine/coding-standard": "^8.0",
  36. "phpstan/phpstan": "^0.12.18",
  37. "phpunit/phpunit": "^8.5|^9.4",
  38. "symfony/yaml": "^3.4|^4.0|^5.0",
  39. "vimeo/psalm": "4.1.1"
  40. },
  41. "suggest": {
  42. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  43. },
  44. "autoload": {
  45. "psr-4": { "Doctrine\\ORM\\": "lib/Doctrine/ORM" }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "Doctrine\\Tests\\": "tests/Doctrine/Tests",
  50. "Doctrine\\Performance\\": "tests/Doctrine/Performance"
  51. }
  52. },
  53. "bin": ["bin/doctrine"],
  54. "archive": {
  55. "exclude": ["!vendor", "tests", "*phpunit.xml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor", "*.swp"]
  56. }
  57. }