composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/command": "^1.5.3",
  30. "guzzlehttp/guzzle": "^7.15",
  31. "guzzlehttp/psr7": "^2.13",
  32. "guzzlehttp/uri-template": "^1.0.10",
  33. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  34. "symfony/polyfill-php80": "^1.25"
  35. },
  36. "require-dev": {
  37. "bamarni/composer-bin-plugin": "^1.8.2",
  38. "guzzlehttp/test-server": "^0.5",
  39. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  40. },
  41. "suggest": {
  42. "gimler/guzzle-description-loader": "^0.0.4"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  47. }
  48. },
  49. "autoload-dev": {
  50. "psr-4": {
  51. "GuzzleHttp\\Tests\\Command\\Guzzle\\": "tests/"
  52. }
  53. },
  54. "config": {
  55. "allow-plugins": {
  56. "bamarni/composer-bin-plugin": true
  57. },
  58. "preferred-install": "dist",
  59. "sort-packages": true
  60. },
  61. "extra": {
  62. "bamarni-bin": {
  63. "bin-links": true,
  64. "forward-command": false
  65. }
  66. }
  67. }