You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.3 || ^5.7 || ^4.8.36"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "React\\Promise\\": "src/"
  36. },
  37. "files": ["src/functions_include.php"]
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "React\\Promise\\": ["tests", "tests/fixtures"]
  42. }
  43. },
  44. "keywords": [
  45. "promise",
  46. "promises"
  47. ]
  48. }