1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "thinkcmf/thinkcmf",
- "description": "ThinkCMF based on ThinkPHP 8.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"
- },
- {
- "name": "55",
- "email": "wuwu@wuwuseo.com"
- }
- ],
- "minimum-stability": "stable",
- "prefer-stable": true,
- "require": {
- "php": ">=8.0.0",
- "ext-json": "*",
- "ext-curl": "*",
- "ext-pdo": "*",
- "thinkcmf/cmf-app": "^8.0.0",
- "thinkcmf/cmf-install": "^8.0.0",
- "thinkcmf/cmf-api": "^8.0.0",
- "thinkcmf/cmf-appstore": "^2.0",
- "thinkcmf/cmf-root": "^2.0"
- },
- "require-dev": {
- "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",
- "allow-plugins": {
- "thinkcmf/cmf-root": true
- }
- },
- "scripts": {
- "post-autoload-dump": [
- "@php think service:discover",
- "@php think vendor:publish",
- "@php think migrate:run"
- ]
- },
- "repositories": {
- }
- }
|