composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 Otávio Cobucci Oblonczyk",
  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": "^5.6 || ^7.0",
  21. "ext-mbstring": "*",
  22. "ext-openssl": "*"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^5.7 || ^7.3",
  26. "squizlabs/php_codesniffer": "~2.3",
  27. "phpmd/phpmd": "~2.2",
  28. "phpunit/php-invoker": "~1.1",
  29. "mikey179/vfsstream": "~1.5"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Lcobucci\\JWT\\": "src"
  34. },
  35. "files": [
  36. "compat/class-aliases.php",
  37. "compat/json-exception-polyfill.php",
  38. "compat/lcobucci-clock-polyfill.php"
  39. ]
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Lcobucci\\JWT\\": [
  44. "test/unit",
  45. "test/functional"
  46. ]
  47. }
  48. },
  49. "suggest": {
  50. "lcobucci/clock": "*"
  51. },
  52. "extra": {
  53. "branch-alias": {
  54. "dev-master": "3.1-dev"
  55. }
  56. }
  57. }