composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "phper666/jwt-auth",
  3. "type": "library",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf"
  8. ],
  9. "authors": [
  10. {
  11. "name": "Li Yuzhao",
  12. "email": "562405704@qq.com",
  13. "homepage": "https://github.com/phper666/jwt-auth",
  14. "role": "Developer"
  15. }
  16. ],
  17. "description": "jwt-auth Component",
  18. "autoload": {
  19. "psr-4": {
  20. "Phper666\\JWTAuth\\": "src/"
  21. }
  22. },
  23. "autoload-dev": {},
  24. "require": {
  25. "php": ">=7.2",
  26. "ext-swoole": ">=4.4",
  27. "lcobucci/jwt": "^3.2",
  28. "nesbot/carbon": "^1.0 || ^2.0"
  29. },
  30. "require-dev": {},
  31. "suggest": {
  32. "hyperf/cache": "required hyperf/cache ~2.0.0 OR required hyperf/cache ~1.1.0",
  33. "hyperf/command": "required hyperf/command ~2.0.0 OR required hyperf/command ~1.1.0",
  34. "hyperf/config": "required hyperf/config ~2.0.0 OR required hyperf/config ~1.1.0",
  35. "hyperf/di": "required hyperf/di ~2.0.0 OR required hyperf/di ~1.1.0"
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "scripts": {},
  41. "extra": {
  42. "hyperf": {
  43. "config": "Phper666\\JWTAuth\\ConfigProvider"
  44. }
  45. }
  46. }