更新框架到8.1

This commit is contained in:
耗子 2025-06-09 00:01:33 +08:00
parent 5050af2f73
commit 30912fdf75
No known key found for this signature in database
GPG Key ID: C964D7226D045DAA
3 changed files with 1348 additions and 13 deletions

1
.gitignore vendored
View File

@ -3,4 +3,3 @@
/vendor /vendor
*.log *.log
.env .env
/composer.lock

View File

@ -1,4 +1,5 @@
{ {
"$schema": "https://getcomposer.org/schema.json",
"name": "netcccyun/dnsmgr", "name": "netcccyun/dnsmgr",
"description": "聚合DNS管理系统", "description": "聚合DNS管理系统",
"type": "project", "type": "project",
@ -31,10 +32,16 @@
"email": "admin@kuxi.tech", "email": "admin@kuxi.tech",
"homepage": "https://www.kuxi.tech", "homepage": "https://www.kuxi.tech",
"role": "Project Developer" "role": "Project Developer"
},
{
"name": "耗子",
"email": "haozi@loli.email",
"homepage": "https://hzbk.net",
"role": "Project Developer"
} }
], ],
"require": { "require": {
"php": ">=7.4.0", "php": ">=8.2.0",
"ext-pdo": "*", "ext-pdo": "*",
"ext-gd": "*", "ext-gd": "*",
"ext-curl": "*", "ext-curl": "*",
@ -43,28 +50,30 @@
"ext-mbstring": "*", "ext-mbstring": "*",
"ext-ssh2": "*", "ext-ssh2": "*",
"ext-ftp": "*", "ext-ftp": "*",
"topthink/framework": "^6.0.0", "topthink/framework": "^8.1.0",
"topthink/think-orm": "^2.0", "topthink/think-orm": "^4.0",
"topthink/think-view": "^1.0", "topthink/think-view": "^2.0",
"cccyun/think-captcha": "^3.0", "cccyun/think-captcha": "^3.0",
"symfony/polyfill-intl-idn": "^1.31", "symfony/polyfill-intl-idn": "^1.32",
"symfony/polyfill-php80": "^1.31", "symfony/polyfill-mbstring": "^1.32",
"symfony/polyfill-php81": "^1.32",
"symfony/polyfill-php82": "^1.32",
"cccyun/php-whois": "^1.0" "cccyun/php-whois": "^1.0"
}, },
"require-dev": { "require-dev": {
"symfony/var-dumper": "^4.2", "symfony/var-dumper": "^7.3",
"topthink/think-trace":"^1.0", "topthink/think-trace":"^1.0",
"swoole/ide-helper": "^5.1" "swoole/ide-helper": "^6.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"app\\": "app" "app\\": "app"
},
"psr-0": {
"": "extend/"
} }
}, },
"config": { "config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform-check": false,
"preferred-install": "dist" "preferred-install": "dist"
}, },
"scripts": { "scripts": {
@ -72,5 +81,7 @@
"@php think service:discover", "@php think service:discover",
"@php think vendor:publish" "@php think vendor:publish"
] ]
} },
"minimum-stability": "stable",
"prefer-stable": true
} }

1325
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff