Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

composer.json 914B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "guzzlehttp/command",
  3. "description": "Provides the foundation for building command-based web service clients",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Michael Dowling",
  8. "email": "mtdowling@gmail.com",
  9. "homepage": "https://github.com/mtdowling"
  10. },
  11. {
  12. "name": "Jeremy Lindblom",
  13. "email": "jeremeamia@gmail.com",
  14. "homepage": "https://github.com/jeremeamia"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.5.0",
  19. "guzzlehttp/guzzle": "^6.2",
  20. "guzzlehttp/promises": "~1.3",
  21. "guzzlehttp/psr7": "~1.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "~4.0|~5.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "GuzzleHttp\\Command\\": "src/"
  29. }
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "0.9-dev"
  34. }
  35. }
  36. }