composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "react/promise",
  3. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Jan Sorgalla",
  8. "homepage": "https://sorgalla.com/",
  9. "email": "jsorgalla@gmail.com"
  10. },
  11. {
  12. "name": "Christian Lück",
  13. "homepage": "https://clue.engineering/",
  14. "email": "christian@clue.engineering"
  15. },
  16. {
  17. "name": "Cees-Jan Kiewiet",
  18. "homepage": "https://wyrihaximus.net/",
  19. "email": "reactphp@ceesjankiewiet.nl"
  20. },
  21. {
  22. "name": "Chris Boden",
  23. "homepage": "https://cboden.dev/",
  24. "email": "cboden@gmail.com"
  25. }
  26. ],
  27. "require": {
  28. "php": ">=7.1.0"
  29. },
  30. "require-dev": {
  31. "phpstan/phpstan": "1.10.39 || 1.4.10",
  32. "phpunit/phpunit": "^9.6 || ^7.5"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "React\\Promise\\": "src/"
  37. },
  38. "files": [
  39. "src/functions_include.php"
  40. ]
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "React\\Promise\\": [
  45. "tests/fixtures/",
  46. "tests/"
  47. ]
  48. },
  49. "files": [
  50. "tests/Fiber.php"
  51. ]
  52. },
  53. "keywords": [
  54. "promise",
  55. "promises"
  56. ]
  57. }