| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "topthink/think",
- "description": "the new thinkphp framework",
- "type": "project",
- "keywords": [
- "framework",
- "thinkphp",
- "ORM"
- ],
- "homepage": "http://thinkphp.cn/",
- "license": "Apache-2.0",
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- }
- ],
- "require": {
- "php": ">=7.1.0",
- "topthink/framework": "^6.0.0",
- "topthink/think-orm": "^2.0",
- "topthink/think-multi-app": "^1.0",
- "topthink/think-queue": "^3.0",
- "topthink/think-worker": "^3.0",
- "topthink/think-filesystem": "^2.0",
- "lvht/geohash": "^1.1",
- "myclabs/php-enum": "^1.7",
- "overtrue/wechat": "^4.2",
- "qiniu/php-sdk": "^7.2",
- "aliyuncs/oss-sdk-php": "^2.3",
- "qcloud/cos-sdk-v5": "^2.0",
- "kosinix/grafika": "dev-master",
- "endroid/qrcode": "^3.7",
- "phpoffice/phpspreadsheet": "^1.13",
- "workerman/mysql": "^1.0",
- "alipaysdk/easysdk": "^2.2"
- },
- "require-dev": {
- "symfony/var-dumper": "^4.2",
- "topthink/think-trace":"^1.0"
- },
- "autoload": {
- "psr-4": {
- "app\\": "app"
- },
- "psr-0": {
- "": "extend/"
- }
- },
- "config": {
- "preferred-install": "dist"
- },
- "scripts": {
- "post-autoload-dump": [
- "@php think service:discover",
- "@php think vendor:publish"
- ]
- }
- }
|