composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "guzzlehttp/promises",
  3. "description": "Guzzle promises library",
  4. "keywords": ["promise"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Graham Campbell",
  9. "email": "hello@gjcampbell.co.uk",
  10. "homepage": "https://github.com/GrahamCampbell"
  11. },
  12. {
  13. "name": "Michael Dowling",
  14. "email": "mtdowling@gmail.com",
  15. "homepage": "https://github.com/mtdowling"
  16. },
  17. {
  18. "name": "Tobias Nyholm",
  19. "email": "tobias.nyholm@gmail.com",
  20. "homepage": "https://github.com/Nyholm"
  21. },
  22. {
  23. "name": "Tobias Schultze",
  24. "email": "webmaster@tubo-world.de",
  25. "homepage": "https://github.com/Tobion"
  26. }
  27. ],
  28. "require": {
  29. "php": "^7.2.5 || ^8.0"
  30. },
  31. "require-dev": {
  32. "bamarni/composer-bin-plugin": "^1.8.1",
  33. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "GuzzleHttp\\Promise\\": "src/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "GuzzleHttp\\Promise\\Tests\\": "tests/"
  43. }
  44. },
  45. "extra": {
  46. "bamarni-bin": {
  47. "bin-links": true,
  48. "forward-command": false
  49. }
  50. },
  51. "config": {
  52. "allow-plugins": {
  53. "bamarni/composer-bin-plugin": true
  54. },
  55. "preferred-install": "dist",
  56. "sort-packages": true
  57. }
  58. }