composer.json 852 B

1234567891011121314151617181920212223242526
  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.3.2"
  17. },
  18. "autoload": {
  19. "psr-0": { "Doctrine\\Common\\Collections\\": "lib/" }
  20. },
  21. "extra": {
  22. "branch-alias": {
  23. "dev-master": "1.2.x-dev"
  24. }
  25. }
  26. }