composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.5",
  21. "ext-openssl": "*"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "~4.5",
  25. "squizlabs/php_codesniffer": "~2.3",
  26. "phpmd/phpmd": "~2.2",
  27. "phpunit/php-invoker": "~1.1",
  28. "mikey179/vfsStream": "~1.5",
  29. "mdanter/ecc": "~0.3.1"
  30. },
  31. "suggest":{
  32. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Lcobucci\\JWT\\": "src"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Lcobucci\\JWT\\": [
  42. "test/unit",
  43. "test/functional"
  44. ]
  45. }
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "3.1-dev"
  50. }
  51. }
  52. }