mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
ComposerUpdate
This commit is contained in:
parent
4c0232c65e
commit
dbcf19263b
20
vendor/composer/installed.json
vendored
20
vendor/composer/installed.json
vendored
@ -223,17 +223,17 @@
|
||||
},
|
||||
{
|
||||
"name": "league/mime-type-detection",
|
||||
"version": "1.5.0",
|
||||
"version_normalized": "1.5.0.0",
|
||||
"version": "1.5.1",
|
||||
"version_normalized": "1.5.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/mime-type-detection.git",
|
||||
"reference": "ea2fbfc988bade315acd5967e6d02274086d0f28"
|
||||
"reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28",
|
||||
"reference": "ea2fbfc988bade315acd5967e6d02274086d0f28",
|
||||
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
|
||||
"reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
@ -250,7 +250,7 @@
|
||||
"phpstan/phpstan": "^0.12.36",
|
||||
"phpunit/phpunit": "^8.5.8"
|
||||
},
|
||||
"time": "2020-09-21T18:10:53+00:00",
|
||||
"time": "2020-10-18T11:50:25+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
@ -893,12 +893,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||
"reference": "19e53d5ea8335b706742cc4ff964ea8f5ce9b726"
|
||||
"reference": "fffe4896577d523c165f3730d6112d4d0aff11d5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/19e53d5ea8335b706742cc4ff964ea8f5ce9b726",
|
||||
"reference": "19e53d5ea8335b706742cc4ff964ea8f5ce9b726",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/fffe4896577d523c165f3730d6112d4d0aff11d5",
|
||||
"reference": "fffe4896577d523c165f3730d6112d4d0aff11d5",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
@ -915,7 +915,7 @@
|
||||
"ext-mbstring": "*",
|
||||
"topthink/framework": "^6.0"
|
||||
},
|
||||
"time": "2020-10-15T05:41:07+00:00",
|
||||
"time": "2020-10-15T06:12:17+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"think": {
|
||||
|
@ -70,6 +70,7 @@ class GeneratedExtensionToMimeTypeMap implements ExtensionToMimeTypeMap
|
||||
'azs' => 'application/vnd.airzip.filesecure.azs',
|
||||
'azv' => 'image/vnd.airzip.accelerator.azv',
|
||||
'azw' => 'application/vnd.amazon.ebook',
|
||||
'b16' => 'image/vnd.pco.b16',
|
||||
'bat' => 'application/x-msdownload',
|
||||
'bcpio' => 'application/x-bcpio',
|
||||
'bdf' => 'application/x-font-bdf',
|
||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
// This file is automatically generated at:2020-10-15 13:46:39
|
||||
// This file is automatically generated at:2020-10-21 09:38:54
|
||||
declare (strict_types = 1);
|
||||
return array (
|
||||
0 => 'think\\admin\\Library',
|
||||
|
2
vendor/zoujingli/think-library/readme.md
vendored
2
vendor/zoujingli/think-library/readme.md
vendored
@ -8,7 +8,7 @@ ThinkLibrary 6.0 是针对 ThinkPHP 6.0 版本封装的一套工具类库,方
|
||||
* FORM表单处理器(表单展示及数据入库)
|
||||
* 数据状态快速处理(数据指定字段更新,支持多字段同时)
|
||||
* 数据安全删除处理(硬删除 + 软删除,is_deleted 字段存在则自动软删除)
|
||||
* 文件存储通用组件(本地服务存储 + 阿里云OSS存储 + 七牛云存储)
|
||||
* 文件存储通用组件(本地服务存储 + 七牛云存储 + 阿里云OSS存储 + 腾讯云COS存储)
|
||||
* 通用数据保存更新(通过 key 值及 where 判定是否存在,存在则更新,不存在则新增)
|
||||
* 通用网络请求 (支持 get 及 post,可配置请求证书等)
|
||||
* 系统参数通用 g-k-v 配置(快速参数长久化配置)
|
||||
|
@ -41,7 +41,7 @@ class Library extends Service
|
||||
/**
|
||||
* 扩展库版本号
|
||||
*/
|
||||
const VERSION = '6.0.16';
|
||||
const VERSION = '6.0.17';
|
||||
|
||||
/**
|
||||
* 启动服务
|
||||
|
Loading…
x
Reference in New Issue
Block a user