12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "thinkcmf/thinkcmf",
- "description": "ThinkCMF based on ThinkPHP 6.0 , it is a free and open source Content Management Framework(CMF)",
- "type": "project",
- "keywords": [
- "cmf",
- "ThinkCMF",
- "framework",
- "ThinkPHP",
- "ORM"
- ],
- "homepage": "http://www.thinkcmf.com/",
- "license": "MIT",
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- },
- {
- "name": "Xia",
- "email": "449134904@qq.com"
- }
- ],
- "minimum-stability": "dev",
- "prefer-stable": true,
- "require": {
- "php": ">=7.1.0",
- "ext-json": "*",
- "ext-curl": "*",
- "ext-pdo": "*",
- "thinkcmf/cmf": "^6.0.0",
- "thinkcmf/cmf-app": "^6.0.0",
- "thinkcmf/cmf-route": "^6.0.0",
- "topthink/framework": "^6.0.0",
- "thinkcmf/think-view": "~1.0.15",
- "topthink/think-orm": "^2.0",
- "topthink/think-captcha": "^3.0",
- "thinkcmf/cmf-install": "^6.0.0",
- "thinkcmf/cmf-api": "^6.0.0",
- "thinkcmf/cmf-appstore": "^1.0",
- "thinkcmf/cmf-root": "^1.0"
- },
- "require-dev": {
- "symfony/var-dumper": "^4.2",
- "topthink/think-trace": "^1.0"
- },
- "autoload": {
- "psr-4": {
- "app\\": "app",
- "api\\": "api",
- "plugins\\": "public/plugins",
- "themes\\": "public/themes"
- },
- "psr-0": {
- "": "extend/"
- }
- },
- "extra": {
- "think-config": "data/config"
- },
- "config": {
- "preferred-install": "dist",
- "vendor-dir": "vendor"
- },
- "scripts": {
- "post-autoload-dump": [
- "@php think service:discover",
- "@php think vendor:publish"
- ]
- },
- "repositories": {
- }
- }
|