composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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": "~6.0.0",
  13. "phpmailer/phpmailer": "~6.0",
  14. "mindplay/annotations": "^1.3",
  15. "ezyang/htmlpurifier": "^4.9",
  16. "electrolinux/phpquery": "^0.9.6",
  17. "thinkcmf/cmf-extend": "~5.1.0",
  18. "topthink/think-orm": "^2.0",
  19. "xia/migration": "^6.0",
  20. "thinkcmf/cmf-captcha": "^3.0"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "cmf\\": "src",
  25. "think\\": "think"
  26. },
  27. "files": [
  28. "src/common.php"
  29. ],
  30. "classmap": [
  31. "think/App.php",
  32. "think/Console.php",
  33. "think/View.php",
  34. "think/Route.php",
  35. "think/Http.php",
  36. "think/route/Rule.php",
  37. "think/route/Url.php",
  38. "think/route/dispatch/Controller.php",
  39. "think/route/dispatch/Url.php"
  40. ]
  41. }
  42. }