composer.json 803 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "thinkcmf/cmf",
  3. "description": "The ThinkCMF Core Package",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "catman",
  8. "email": "catman@thinkcmf.com"
  9. }
  10. ],
  11. "require": {
  12. "topthink/framework": "~5.1.0",
  13. "topthink/think-captcha": "^2.0",
  14. "phpmailer/phpmailer": "~6.0",
  15. "mindplay/annotations": "^1.3",
  16. "ezyang/htmlpurifier": "^4.9",
  17. "electrolinux/phpquery": "^0.9.6",
  18. "thinkcmf/cmf-extend": "~5.1.0"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "cmf\\": "src"
  23. },
  24. "files": [
  25. "src/common.php"
  26. ],
  27. "classmap": [
  28. "src/App.php",
  29. "src/Log.php",
  30. "src/route/dispatch/Module.php"
  31. ]
  32. }
  33. }