composer.json 769 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "thans/tp-jwt-auth",
  3. "description": "thinkphp jwt auth composer",
  4. "type": "library",
  5. "require": {
  6. "php": "^7.0 || ^8.0",
  7. "qeq66/jwt": "3.3.*",
  8. "topthink/framework": "^5.1.10 || ^6.0.0"
  9. },
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Thans",
  14. "email": "360641274@qq.com"
  15. }
  16. ],
  17. "autoload": {
  18. "psr-4": {
  19. "thans\\jwt\\": "src"
  20. },
  21. "files": [
  22. "src/helper.php"
  23. ]
  24. },
  25. "extra": {
  26. "think": {
  27. "services": [
  28. "thans\\jwt\\Service"
  29. ],
  30. "config": {
  31. "jwt": "config/config.php"
  32. }
  33. }
  34. },
  35. "minimum-stability": "dev"
  36. }