This commit is contained in:
wangjinlei
2020-11-12 15:51:19 +08:00
parent 69bdcdc84a
commit 251d1b19c8
480 changed files with 7298 additions and 0 deletions

36
composer.json Normal file
View File

@@ -0,0 +1,36 @@
{
"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": ">=5.4.0",
"topthink/framework": "5.0.*",
"topthink/think-captcha": "1.*",
"phpmailer/phpmailer": "^6.1",
"tecnickcom/tcpdf": "^6.3"
},
"autoload": {
"psr-4": {
"app\\": "application"
}
},
"extra": {
"think-path": "thinkphp"
},
"config": {
"preferred-install": "dist"
}
}