composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "firebase/php-jwt",
  3. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  4. "homepage": "https://github.com/googleapis/php-jwt",
  5. "keywords": [
  6. "php",
  7. "jwt"
  8. ],
  9. "authors": [
  10. {
  11. "name": "Neuman Vong",
  12. "email": "neuman+pear@twilio.com",
  13. "role": "Developer"
  14. },
  15. {
  16. "name": "Anant Narayanan",
  17. "email": "anant@php.net",
  18. "role": "Developer"
  19. }
  20. ],
  21. "license": "BSD-3-Clause",
  22. "require": {
  23. "php": "^8.0"
  24. },
  25. "suggest": {
  26. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present",
  27. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  28. "phpseclib/phpseclib": "Support PS256 (RSASSA-PSS) signatures"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Firebase\\JWT\\": "src"
  33. }
  34. },
  35. "require-dev": {
  36. "guzzlehttp/guzzle": "^7.4",
  37. "phpspec/prophecy-phpunit": "^2.0",
  38. "phpunit/phpunit": "^9.5",
  39. "psr/cache": "^2.0||^3.0",
  40. "psr/http-client": "^1.0",
  41. "psr/http-factory": "^1.0",
  42. "phpfastcache/phpfastcache": "^9.2",
  43. "phpseclib/phpseclib": "~3.0"
  44. }
  45. }