composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "doctrine/collections",
  3. "type": "library",
  4. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  5. "keywords": [
  6. "php",
  7. "collections",
  8. "array",
  9. "iterators"
  10. ],
  11. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  12. "license": "MIT",
  13. "authors": [
  14. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  15. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  16. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  17. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  18. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  19. ],
  20. "require": {
  21. "php": "^7.1.3 || ^8.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^7.0",
  25. "doctrine/coding-standard": "^6.0",
  26. "phpstan/phpstan-shim": "^0.9.2",
  27. "vimeo/psalm": "^3.8.1"
  28. },
  29. "autoload": {
  30. "psr-4": { "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  35. }
  36. }
  37. }