composer.json 1.7 KB

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