composer.json 503 B

1234567891011121314151617181920
  1. {
  2. "name": "guzzle/common",
  3. "homepage": "http://guzzlephp.org/",
  4. "description": "Common libraries used by Guzzle",
  5. "keywords": ["common", "event", "exception", "collection"],
  6. "license": "MIT",
  7. "require": {
  8. "php": ">=5.3.2",
  9. "symfony/event-dispatcher": ">=2.1"
  10. },
  11. "autoload": {
  12. "psr-0": { "Guzzle\\Common": "" }
  13. },
  14. "target-dir": "Guzzle/Common",
  15. "extra": {
  16. "branch-alias": {
  17. "dev-master": "3.7-dev"
  18. }
  19. }
  20. }