You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.1 KiB
82 lines
2.1 KiB
{
|
|
"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"
|
|
},
|
|
{
|
|
"name": "yunwuxin",
|
|
"email": "448901948@qq.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.4.0",
|
|
"ext-gd": "*",
|
|
"ext-curl": "*",
|
|
"ext-bcmath": "*",
|
|
"ext-json": "*",
|
|
"ext-pdo": "*",
|
|
"ext-openssl": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-libxml": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-zlib": "*",
|
|
"ext-zip": "*",
|
|
"ext-redis": "*",
|
|
"ext-fileinfo": "*",
|
|
"topthink/framework": "^6.1",
|
|
"topthink/think-orm": "^2.0",
|
|
"topthink/think-multi-app": "^1.0",
|
|
"topthink/think-worker": "^3.0",
|
|
"topthink/think-filesystem": "^2.0",
|
|
"topthink/think-queue": "^3.0",
|
|
"yiovo/tp6-cache": "^1.0",
|
|
"yiovo/tp6-captcha": "^1.1",
|
|
"qiniu/php-sdk": "^7.2",
|
|
"aliyuncs/oss-sdk-php": "^2.3",
|
|
"qcloud/cos-sdk-v5": "^2.4",
|
|
"kosinix/grafika": "dev-master",
|
|
"myclabs/php-enum": "^1.6",
|
|
"lvht/geohash": "^1.1",
|
|
"aferrandini/phpqrcode": "^1.0",
|
|
"phpoffice/phpspreadsheet": "^1.18",
|
|
"overtrue/easy-sms": "^2.0",
|
|
"overtrue/wechat": "~4.0",
|
|
"alipaysdk/easysdk": "^2.2",
|
|
"wechatpay/wechatpay": "^1.4"
|
|
},
|
|
"require-dev": {
|
|
"symfony/var-dumper": "^4.2"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"app\\": "app",
|
|
"cores\\": "cores"
|
|
},
|
|
"psr-0": {
|
|
"": "extend/"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"allow-plugins": {
|
|
"easywechat-composer/easywechat-composer": false
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"@php think service:discover",
|
|
"@php think vendor:publish"
|
|
]
|
|
}
|
|
}
|
|
|