composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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": ">=5.4.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "React\\Promise\\": "src/"
  36. },
  37. "files": [
  38. "src/functions_include.php"
  39. ]
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "React\\Promise\\": [
  44. "tests/",
  45. "tests/fixtures/"
  46. ]
  47. }
  48. },
  49. "keywords": [
  50. "promise",
  51. "promises"
  52. ]
  53. }