composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "doctrine/collections",
  3. "type": "library",
  4. "description": "Collections Abstraction library",
  5. "keywords": ["collections", "array", "iterator"],
  6. "homepage": "http://www.doctrine-project.org",
  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": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  14. ],
  15. "require": {
  16. "php": "^5.6 || ^7.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "^5.7",
  20. "doctrine/coding-standard": "~0.1@dev"
  21. },
  22. "autoload": {
  23. "psr-0": { "Doctrine\\Common\\Collections\\": "lib/" }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  28. }
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.3.x-dev"
  33. }
  34. }
  35. }