buildadmin/composer.json

58 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "wonderful-code/buildadmin",
"description": "Build your admin framework",
"type": "project",
"keywords": [
"buildadmin",
"thinkphp"
],
2023-07-18 18:30:19 +00:00
"homepage": "https://uni.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",
2024-10-14 04:38:25 +00:00
"topthink/think-orm": "3.0.28",
"topthink/think-multi-app": "^1.0",
"topthink/think-throttle": "v2.0.0",
"topthink/think-migration": "3.1.1",
"symfony/http-foundation": "^6.0|^7.0",
"phpmailer/phpmailer": "^6.8",
"guzzlehttp/guzzle": "^7.8.1",
"voku/anti-xss": "^4.1",
"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": "^5.4",
"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"
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}