composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "thinkcmf/thinkcmf",
  3. "description": "ThinkCMF based on ThinkPHP 8.0 , it is a free and open source Content Management Framework(CMF)",
  4. "type": "project",
  5. "keywords": [
  6. "cmf",
  7. "ThinkCMF",
  8. "framework",
  9. "ThinkPHP",
  10. "ORM"
  11. ],
  12. "homepage": "http://www.thinkcmf.com/",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "catman",
  17. "email": "catman@thinkcmf.com"
  18. },
  19. {
  20. "name": "Xia",
  21. "email": "449134904@qq.com"
  22. },
  23. {
  24. "name": "55",
  25. "email": "wuwu@wuwuseo.com"
  26. }
  27. ],
  28. "minimum-stability": "stable",
  29. "prefer-stable": true,
  30. "require": {
  31. "php": ">=8.0.0",
  32. "ext-json": "*",
  33. "ext-curl": "*",
  34. "ext-pdo": "*",
  35. "thinkcmf/cmf-app": "^8.0.0",
  36. "thinkcmf/cmf-install": "^8.0.0",
  37. "thinkcmf/cmf-api": "^8.0.0",
  38. "thinkcmf/cmf-appstore": "^2.0",
  39. "thinkcmf/cmf-root": "^2.0"
  40. },
  41. "require-dev": {
  42. "topthink/think-trace": "^1.0"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "app\\": "app",
  47. "api\\": "api",
  48. "plugins\\": "public/plugins",
  49. "themes\\": "public/themes"
  50. },
  51. "psr-0": {
  52. "": "extend/"
  53. }
  54. },
  55. "extra": {
  56. "think-config": "data/config"
  57. },
  58. "config": {
  59. "preferred-install": "dist",
  60. "vendor-dir": "vendor",
  61. "allow-plugins": {
  62. "thinkcmf/cmf-root": true
  63. }
  64. },
  65. "scripts": {
  66. "post-autoload-dump": [
  67. "@php think service:discover",
  68. "@php think vendor:publish",
  69. "@php think migrate:run"
  70. ]
  71. },
  72. "repositories": {
  73. }
  74. }