composer.json 965 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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-captcha": "~3.0.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/console/command/VendorPublish.php",
  30. "src/captcha/Captcha.php"
  31. ]
  32. },
  33. "extra": {
  34. "think": {
  35. "services": [
  36. "think\\captcha\\CaptchaService"
  37. ]
  38. }
  39. }
  40. }