composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "lcobucci/jwt",
  3. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  4. "license": [
  5. "BSD-3-Clause"
  6. ],
  7. "type": "library",
  8. "keywords": [
  9. "JWT",
  10. "JWS"
  11. ],
  12. "authors": [
  13. {
  14. "name": "Luís Cobucci",
  15. "email": "lcobucci@gmail.com",
  16. "role": "Developer"
  17. }
  18. ],
  19. "require": {
  20. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  21. "ext-openssl": "*",
  22. "ext-sodium": "*",
  23. "psr/clock": "^1.0"
  24. },
  25. "require-dev": {
  26. "infection/infection": "^0.29",
  27. "lcobucci/clock": "^3.2",
  28. "lcobucci/coding-standard": "^11.0",
  29. "phpbench/phpbench": "^1.2",
  30. "phpstan/extension-installer": "^1.2",
  31. "phpstan/phpstan": "^1.10.7",
  32. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  33. "phpstan/phpstan-phpunit": "^1.3.10",
  34. "phpstan/phpstan-strict-rules": "^1.5.0",
  35. "phpunit/phpunit": "^11.1"
  36. },
  37. "suggest": {
  38. "lcobucci/clock": ">= 3.2"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Lcobucci\\JWT\\": "src"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "Lcobucci\\JWT\\Tests\\": "tests"
  48. }
  49. },
  50. "config": {
  51. "allow-plugins": {
  52. "dealerdirect/phpcodesniffer-composer-installer": true,
  53. "infection/extension-installer": true,
  54. "ocramius/package-versions": true,
  55. "phpstan/extension-installer": true
  56. },
  57. "platform": {
  58. "php": "8.2.99"
  59. },
  60. "preferred-install": "dist",
  61. "sort-packages": true
  62. }
  63. }