12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "thinkcmf/cmf",
- "description": "The ThinkCMF Core Package",
- "license": "Apache-2.0",
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "require": {
- "topthink/framework": "~6.0.0",
- "phpmailer/phpmailer": "~6.0",
- "mindplay/annotations": "^1.3",
- "ezyang/htmlpurifier": "^4.9",
- "electrolinux/phpquery": "^0.9.6",
- "thinkcmf/cmf-extend": "~5.1.0",
- "topthink/think-captcha": "~3.0.0"
- },
- "autoload": {
- "psr-4": {
- "cmf\\": "src"
- },
- "files": [
- "src/common.php"
- ],
- "classmap": [
- "src/App.php",
- "src/console/command/VendorPublish.php",
- "src/captcha/Captcha.php"
- ]
- },
- "extra": {
- "think": {
- "services": [
- "think\\captcha\\CaptchaService"
- ]
- }
- }
- }
|