composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "react/async",
  3. "description": "Async utilities for ReactPHP",
  4. "keywords": ["async", "ReactPHP"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Christian Lück",
  9. "homepage": "https://clue.engineering/",
  10. "email": "christian@clue.engineering"
  11. },
  12. {
  13. "name": "Cees-Jan Kiewiet",
  14. "homepage": "https://wyrihaximus.net/",
  15. "email": "reactphp@ceesjankiewiet.nl"
  16. },
  17. {
  18. "name": "Jan Sorgalla",
  19. "homepage": "https://sorgalla.com/",
  20. "email": "jsorgalla@gmail.com"
  21. },
  22. {
  23. "name": "Chris Boden",
  24. "homepage": "https://cboden.dev/",
  25. "email": "cboden@gmail.com"
  26. }
  27. ],
  28. "require": {
  29. "php": ">=7.1",
  30. "react/event-loop": "^1.2",
  31. "react/promise": "^3.0 || ^2.8 || ^1.2.1"
  32. },
  33. "require-dev": {
  34. "phpstan/phpstan": "1.10.39 || 1.4.10",
  35. "phpunit/phpunit": "^9.6 || ^7.5"
  36. },
  37. "autoload": {
  38. "files": [
  39. "src/functions_include.php"
  40. ]
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "React\\Tests\\Async\\": "tests/"
  45. }
  46. }
  47. }