Advertisement
Guest User

composer.json

a guest
Mar 18th, 2015
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. {
  2. "name": "guzzlehttp/guzzle",
  3. "type": "library",
  4. "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
  5. "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
  6. "homepage": "http://guzzlephp.org/",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Michael Dowling",
  11. "email": "[email protected]",
  12. "homepage": "https://github.com/mtdowling"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.4.0",
  17. "guzzlehttp/ringphp": "~1.0",
  18. },
  19. "require-dev": {
  20. "ext-curl": "*",
  21. "psr/log": "~1.0",
  22. "phpunit/phpunit": "~4.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "GuzzleHttp\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "GuzzleHttp\\Tests\\": "tests/"
  32. }
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "5.0-dev"
  37. }
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement