composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "files": [
  23. "src/Functions.php"
  24. ]
  25. },
  26. "autoload-dev": {},
  27. "require": {
  28. "php": ">=7.4",
  29. "ext-swoole": ">=4.4",
  30. "lcobucci/jwt": "4.1.5",
  31. "nesbot/carbon": "^1.0 || ^2.0"
  32. },
  33. "require-dev": {},
  34. "suggest": {
  35. "hyperf/cache": "required hyperf/cache ~2.2.0",
  36. "hyperf/command": "required hyperf/command ~2.2.0",
  37. "hyperf/config": "required hyperf/config ~2.2.0",
  38. "hyperf/di": "required hyperf/di ~2.2.0"
  39. },
  40. "config": {
  41. "sort-packages": true
  42. },
  43. "scripts": {},
  44. "extra": {
  45. "hyperf": {
  46. "config": "Phper666\\JWTAuth\\ConfigProvider"
  47. }
  48. }
  49. }