composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.8",
  30. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  31. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1"
  32. },
  33. "require-dev": {
  34. "bamarni/composer-bin-plugin": "^1.8.2",
  35. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "GuzzleHttp\\Command\\": "src/"
  40. }
  41. },
  42. "extra": {
  43. "bamarni-bin": {
  44. "bin-links": true,
  45. "forward-command": false
  46. }
  47. },
  48. "config": {
  49. "preferred-install": "dist",
  50. "sort-packages": true,
  51. "allow-plugins": {
  52. "bamarni/composer-bin-plugin": true
  53. }
  54. }
  55. }