composer.json 1.5 KB

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