composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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": "^7.4 || ^8.0",
  21. "ext-hash": "*",
  22. "ext-json": "*",
  23. "ext-mbstring": "*",
  24. "ext-openssl": "*",
  25. "ext-sodium": "*",
  26. "lcobucci/clock": "^2.0 || ^3.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.2",
  33. "phpstan/extension-installer": "^1.0",
  34. "phpstan/phpstan": "^1.4",
  35. "phpstan/phpstan-deprecation-rules": "^1.0",
  36. "phpstan/phpstan-phpunit": "^1.0",
  37. "phpstan/phpstan-strict-rules": "^1.0",
  38. "phpunit/php-invoker": "^3.1",
  39. "phpunit/phpunit": "^9.5"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "Lcobucci\\JWT\\": "src"
  44. }
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "Lcobucci\\JWT\\": [
  49. "test/_keys",
  50. "test/unit",
  51. "test/performance"
  52. ],
  53. "Lcobucci\\JWT\\FunctionalTests\\": "test/functional"
  54. }
  55. },
  56. "config": {
  57. "allow-plugins": {
  58. "dealerdirect/phpcodesniffer-composer-installer": true,
  59. "phpstan/extension-installer": true,
  60. "infection/extension-installer": true,
  61. "ocramius/package-versions": true
  62. },
  63. "preferred-install": "dist",
  64. "sort-packages": true
  65. }
  66. }