Drupal investigation

composer.json 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "guzzlehttp/guzzle",
  3. "type": "library",
  4. "description": "Guzzle is a PHP HTTP client library",
  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": "mtdowling@gmail.com",
  12. "homepage": "https://github.com/mtdowling"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.5",
  17. "guzzlehttp/psr7": "^1.4",
  18. "guzzlehttp/promises": "^1.0"
  19. },
  20. "require-dev": {
  21. "ext-curl": "*",
  22. "phpunit/phpunit": "^4.0",
  23. "psr/log": "^1.0"
  24. },
  25. "autoload": {
  26. "files": ["src/functions_include.php"],
  27. "psr-4": {
  28. "GuzzleHttp\\": "src/"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "GuzzleHttp\\Tests\\": "tests/"
  34. }
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "6.2-dev"
  39. }
  40. }
  41. }