composer.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "guzzlehttp/guzzle-services",
  3. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  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": "Stefano Kowalke",
  18. "email": "blueduck@mail.org",
  19. "homepage": "https://github.com/Konafets"
  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/command": "^1.3.1",
  31. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  32. "guzzlehttp/uri-template": "^1.0.1"
  33. },
  34. "require-dev": {
  35. "bamarni/composer-bin-plugin": "^1.8.2",
  36. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "GuzzleHttp\\Tests\\Command\\Guzzle\\": "tests/"
  46. }
  47. },
  48. "suggest": {
  49. "gimler/guzzle-description-loader": "^0.0.4"
  50. },
  51. "extra": {
  52. "bamarni-bin": {
  53. "bin-links": true,
  54. "forward-command": false
  55. }
  56. },
  57. "config": {
  58. "preferred-install": "dist",
  59. "sort-packages": true,
  60. "allow-plugins": {
  61. "bamarni/composer-bin-plugin": true
  62. }
  63. }
  64. }