composer.json 712 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "discord/interactions",
  3. "description": "Utils for implementing the Discord Interactions API",
  4. "type": "library",
  5. "require-dev": {
  6. "simplito/elliptic-php": "^1.0"
  7. },
  8. "archive": {
  9. "exclude": ["!README.md", "!composer.json", "examples", "vendor"]
  10. },
  11. "license": "MIT",
  12. "keywords": ["discord"],
  13. "authors": [
  14. {
  15. "name": "Ian Webster",
  16. "email": "ianw_php@ianww.com"
  17. }
  18. ],
  19. "autoload": {
  20. "psr-4": {"Discord\\": "discord"}
  21. },
  22. "suggest": {
  23. "simplito/elliptic-php": "Required to validate interaction signatures."
  24. },
  25. "conflict": {
  26. "simplito/elliptic-php": "<1.0,>=1.1"
  27. }
  28. }