composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.4.0",
  20. "topthink/framework": "~5.0.0",
  21. "topthink/think-captcha": "1.*",
  22. "topthink/think-migration": "1.*",
  23. "topthink/think-testing": "1.*",
  24. "topthink/think-mongo": "1.*",
  25. "topthink/think-queue": "1.*",
  26. "topthink/think-image": "1.*",
  27. "overtrue/pinyin": "~4.0",
  28. "firebase/php-jwt": "^6.3"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "app\\": "application"
  33. }
  34. },
  35. "extra": {
  36. "think-path": "thinkphp"
  37. },
  38. "config": {
  39. "preferred-install": "dist",
  40. "allow-plugins": {
  41. "topthink/think-installer": true
  42. }
  43. }
  44. }