buildadmin/composer.json

59 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "wonderful-code/buildadmin",
"description": "Build your admin framework",
"type": "project",
"keywords": [
"buildadmin",
"thinkphp"
],
"homepage": "https://buildadmin.com",
"license": "Apache-2.0",
"authors": [
{
"name": "妙码生花",
"email": "hi@buildadmin.com"
}
],
"require": {
"php": ">=8.0.2",
2023-07-06 10:11:26 +00:00
"topthink/framework": "^8.0.0",
2023-06-24 22:06:23 +00:00
"topthink/think-orm": "^3.0",
"topthink/think-multi-app": "^1.0",
"topthink/think-throttle": "v2.0.0",
"topthink/think-migration": "^3.0",
"phpmailer/phpmailer": "^6.8",
"w7corp/easywechat": "^6.12",
"nelexa/zip": "^4.0.0",
"ext-calendar": "*",
2022-08-23 15:01:30 +00:00
"ext-bcmath": "*",
"ext-iconv": "*",
"ext-json": "*",
2022-09-13 09:59:39 +00:00
"ext-gd": "*"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"topthink/think-trace": "^1.0"
},
"autoload": {
"psr-4": {
2022-08-17 05:33:46 +00:00
"app\\": "app",
"modules\\": "modules"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"easywechat-composer/easywechat-composer": true
}
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}