composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "thinkcmf/thinkcmf",
  3. "description": "ThinkCMF based on ThinkPHP 6.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. "minimum-stability": "dev",
  25. "prefer-stable": true,
  26. "require": {
  27. "php": ">=7.1.0",
  28. "ext-json": "*",
  29. "ext-curl": "*",
  30. "ext-pdo": "*",
  31. "thinkcmf/cmf": "^6.0.0",
  32. "thinkcmf/cmf-app": "^6.0.0",
  33. "thinkcmf/cmf-route": "^6.0.0",
  34. "topthink/framework": "^6.0.0",
  35. "thinkcmf/think-view": "~1.0.15",
  36. "topthink/think-orm": "^2.0",
  37. "topthink/think-captcha": "^3.0",
  38. "thinkcmf/cmf-install": "^6.0.0",
  39. "thinkcmf/cmf-api": "^6.0.0",
  40. "thinkcmf/cmf-appstore": "^1.0",
  41. "thinkcmf/cmf-root": "^1.0"
  42. },
  43. "require-dev": {
  44. "symfony/var-dumper": "^4.2",
  45. "topthink/think-trace": "^1.0"
  46. },
  47. "autoload": {
  48. "psr-4": {
  49. "app\\": "app",
  50. "api\\": "api",
  51. "plugins\\": "public/plugins",
  52. "themes\\": "public/themes"
  53. },
  54. "psr-0": {
  55. "": "extend/"
  56. }
  57. },
  58. "extra": {
  59. "think-config": "data/config"
  60. },
  61. "config": {
  62. "preferred-install": "dist",
  63. "vendor-dir": "vendor"
  64. },
  65. "scripts": {
  66. "post-autoload-dump": [
  67. "@php think service:discover",
  68. "@php think vendor:publish"
  69. ]
  70. },
  71. "repositories": {
  72. }
  73. }