composer.json 1.5 KB

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