composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "lcobucci/jwt",
  3. "type": "library",
  4. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5. "keywords": [
  6. "JWT",
  7. "JWS"
  8. ],
  9. "license": [
  10. "BSD-3-Clause"
  11. ],
  12. "authors": [
  13. {
  14. "name": "Luís Cobucci",
  15. "email": "lcobucci@gmail.com",
  16. "role": "Developer"
  17. }
  18. ],
  19. "require": {
  20. "php": "^7.4 || ^8.0",
  21. "ext-hash": "*",
  22. "ext-json": "*",
  23. "ext-mbstring": "*",
  24. "ext-openssl": "*",
  25. "ext-sodium": "*",
  26. "lcobucci/clock": "^2.0"
  27. },
  28. "require-dev": {
  29. "infection/infection": "^0.21",
  30. "lcobucci/coding-standard": "^6.0",
  31. "mikey179/vfsstream": "^1.6.7",
  32. "phpbench/phpbench": "^1.0",
  33. "phpstan/extension-installer": "^1.0",
  34. "phpstan/phpstan": "^0.12",
  35. "phpstan/phpstan-deprecation-rules": "^0.12",
  36. "phpstan/phpstan-phpunit": "^0.12",
  37. "phpstan/phpstan-strict-rules": "^0.12",
  38. "phpunit/php-invoker": "^3.1",
  39. "phpunit/phpunit": "^9.5"
  40. },
  41. "config": {
  42. "preferred-install": "dist",
  43. "sort-packages": true
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "Lcobucci\\JWT\\": "src"
  48. }
  49. },
  50. "autoload-dev": {
  51. "psr-4": {
  52. "Lcobucci\\JWT\\": [
  53. "test/_keys",
  54. "test/unit",
  55. "test/performance"
  56. ],
  57. "Lcobucci\\JWT\\FunctionalTests\\": "test/functional"
  58. }
  59. }
  60. }