composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": "Graham Campbell",
  8. "email": "hello@gjcampbell.co.uk",
  9. "homepage": "https://github.com/GrahamCampbell"
  10. },
  11. {
  12. "name": "Michael Dowling",
  13. "email": "mtdowling@gmail.com",
  14. "homepage": "https://github.com/mtdowling"
  15. },
  16. {
  17. "name": "Jeremy Lindblom",
  18. "email": "jeremeamia@gmail.com",
  19. "homepage": "https://github.com/jeremeamia"
  20. },
  21. {
  22. "name": "Tobias Nyholm",
  23. "email": "tobias.nyholm@gmail.com",
  24. "homepage": "https://github.com/Nyholm"
  25. }
  26. ],
  27. "require": {
  28. "php": "^7.2.5 || ^8.0",
  29. "guzzlehttp/guzzle": "^7.4.1",
  30. "guzzlehttp/promises": "^1.5.1",
  31. "guzzlehttp/psr7": "^1.8.3 || ^2.1"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^8.5.19"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "GuzzleHttp\\Command\\": "src/"
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "1.2-dev"
  44. }
  45. },
  46. "config": {
  47. "preferred-install": "dist",
  48. "sort-packages": true
  49. }
  50. }