composer.json 710 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "liliuwei/thinkphp-jump",
  3. "description": "适用于thinkphp6.0的跳转扩展",
  4. "keywords": ["thinkphp", "think-jump", "success","error","result","redirect"],
  5. "license": "Apache-2.0",
  6. "type": "think-extend",
  7. "authors": [
  8. {
  9. "name": "liliuwei",
  10. "email": "974829947@qq.com"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=7.1.0",
  15. "topthink/framework": "^6.0",
  16. "topthink/think-view": "^1.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "liliuwei\\think\\": "src/"
  21. }
  22. },
  23. "extra": {
  24. "think": {
  25. "config": {
  26. "jump": "src/config/jump.php"
  27. }
  28. }
  29. }
  30. }