composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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": "https://www.thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. },
  17. {
  18. "name": "yunwuxin",
  19. "email": "448901948@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=8.0.0",
  24. "topthink/framework": "^8.0",
  25. "topthink/think-orm": "^3.0",
  26. "topthink/think-filesystem": "^2.0",
  27. "topthink/think-multi-app": "^1.0",
  28. "topthink/think-view": "^2.0",
  29. "topthink/think-annotation": "^2.0",
  30. "symfony/http-foundation": "^6.3",
  31. "phpoffice/phpspreadsheet": "^1.29",
  32. "topthink/think-captcha": "^3.0",
  33. "topthink/think-cors": "^1.0",
  34. "predis/predis": "^3.0"
  35. },
  36. "require-dev": {
  37. "symfony/var-dumper": ">=4.2"
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "app\\": "app"
  42. },
  43. "psr-0": {
  44. "": "extend/"
  45. }
  46. },
  47. "config": {
  48. "preferred-install": "dist"
  49. },
  50. "scripts": {
  51. "post-autoload-dump": [
  52. "@php think service:discover",
  53. "@php think vendor:publish"
  54. ]
  55. }
  56. }