TaoLer/composer.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2020-01-01 13:17:19 +08:00
{
"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"
2020-02-12 17:20:07 +08:00
},
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
2020-01-01 13:17:19 +08:00
],
"require": {
"php": ">=7.1.0",
2020-01-17 14:57:05 +08:00
"topthink/framework": "^6.0.0",
2020-02-12 17:20:07 +08:00
"topthink/think-orm": "^2.0",
"topthink/think-multi-app": "^1.0",
2020-05-20 11:33:27 +08:00
"taoser/think-auth": "^1.0",
2020-02-18 19:28:14 +08:00
"topthink/think-view": "^1.0",
2020-05-20 11:33:27 +08:00
"topthink/think-captcha": "^3.0",
"phpmailer/phpmailer": "^6.1",
2020-02-18 19:28:14 +08:00
"zzstudio/think-addons": "^2.0"
2020-01-01 13:17:19 +08:00
},
"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"
]
}
}