ComposerUpdate

This commit is contained in:
Anyon 2020-10-21 09:44:13 +08:00
parent 4c0232c65e
commit dbcf19263b
5 changed files with 14 additions and 13 deletions

View File

@ -223,17 +223,17 @@
}, },
{ {
"name": "league/mime-type-detection", "name": "league/mime-type-detection",
"version": "1.5.0", "version": "1.5.1",
"version_normalized": "1.5.0.0", "version_normalized": "1.5.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/mime-type-detection.git", "url": "https://github.com/thephpleague/mime-type-detection.git",
"reference": "ea2fbfc988bade315acd5967e6d02274086d0f28" "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28", "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
"reference": "ea2fbfc988bade315acd5967e6d02274086d0f28", "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -250,7 +250,7 @@
"phpstan/phpstan": "^0.12.36", "phpstan/phpstan": "^0.12.36",
"phpunit/phpunit": "^8.5.8" "phpunit/phpunit": "^8.5.8"
}, },
"time": "2020-09-21T18:10:53+00:00", "time": "2020-10-18T11:50:25+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {
@ -893,12 +893,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "19e53d5ea8335b706742cc4ff964ea8f5ce9b726" "reference": "fffe4896577d523c165f3730d6112d4d0aff11d5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/19e53d5ea8335b706742cc4ff964ea8f5ce9b726", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/fffe4896577d523c165f3730d6112d4d0aff11d5",
"reference": "19e53d5ea8335b706742cc4ff964ea8f5ce9b726", "reference": "fffe4896577d523c165f3730d6112d4d0aff11d5",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -915,7 +915,7 @@
"ext-mbstring": "*", "ext-mbstring": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-10-15T05:41:07+00:00", "time": "2020-10-15T06:12:17+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

View File

@ -70,6 +70,7 @@ class GeneratedExtensionToMimeTypeMap implements ExtensionToMimeTypeMap
'azs' => 'application/vnd.airzip.filesecure.azs', 'azs' => 'application/vnd.airzip.filesecure.azs',
'azv' => 'image/vnd.airzip.accelerator.azv', 'azv' => 'image/vnd.airzip.accelerator.azv',
'azw' => 'application/vnd.amazon.ebook', 'azw' => 'application/vnd.amazon.ebook',
'b16' => 'image/vnd.pco.b16',
'bat' => 'application/x-msdownload', 'bat' => 'application/x-msdownload',
'bcpio' => 'application/x-bcpio', 'bcpio' => 'application/x-bcpio',
'bdf' => 'application/x-font-bdf', 'bdf' => 'application/x-font-bdf',

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?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); declare (strict_types = 1);
return array ( return array (
0 => 'think\\admin\\Library', 0 => 'think\\admin\\Library',

View File

@ -8,7 +8,7 @@ ThinkLibrary 6.0 是针对 ThinkPHP 6.0 版本封装的一套工具类库,方
* FORM表单处理器表单展示及数据入库 * FORM表单处理器表单展示及数据入库
* 数据状态快速处理(数据指定字段更新,支持多字段同时) * 数据状态快速处理(数据指定字段更新,支持多字段同时)
* 数据安全删除处理(硬删除 + 软删除is_deleted 字段存在则自动软删除) * 数据安全删除处理(硬删除 + 软删除is_deleted 字段存在则自动软删除)
* 文件存储通用组件(本地服务存储 + 阿里云OSS存储 + 七牛云存储) * 文件存储通用组件(本地服务存储 + 七牛云存储 + 阿里云OSS存储 + 腾讯云COS存储)
* 通用数据保存更新(通过 key 值及 where 判定是否存在,存在则更新,不存在则新增) * 通用数据保存更新(通过 key 值及 where 判定是否存在,存在则更新,不存在则新增)
* 通用网络请求 (支持 get 及 post可配置请求证书等 * 通用网络请求 (支持 get 及 post可配置请求证书等
* 系统参数通用 g-k-v 配置(快速参数长久化配置) * 系统参数通用 g-k-v 配置(快速参数长久化配置)

View File

@ -41,7 +41,7 @@ class Library extends Service
/** /**
* 扩展库版本号 * 扩展库版本号
*/ */
const VERSION = '6.0.16'; const VERSION = '6.0.17';
/** /**
* 启动服务 * 启动服务