Browse Source

Merge branch 'master' of http://git.bjzxtw.org.cn:3000/zxt/public_producer

LiuJ 6 days ago
parent
commit
eb3a5575d1

+ 5 - 1
.env

@@ -40,4 +40,8 @@ AMQP_PASSWORD=zxt_mq_dev
 OSS_ENDPOINT =http://img.bjzxtw.org.cn
 OSS_KEY = xoycEr5qezRF91xITN6i
 OSS_SECRET = IYVyqYZxCCxQD5YnRsayzzNORBqwAPfhQlHP1Glw
-BUCKET=pre
+BUCKET=pre
+
+WEATHER_KEY = SKrxY7wNL6oVHa72x
+
+

+ 78 - 0
app/JsonRpc/PublicRpcService.php

@@ -2,6 +2,7 @@
 
 namespace App\JsonRpc;
 
+use _PHPStan_62c6a0a8b\OndraM\CiDetector\Env;
 use App\Model\BlackWord;
 use App\Model\Department;
 use App\Model\District;
@@ -15,6 +16,7 @@ use Hyperf\Di\Annotation\Inject;
 use Hyperf\RpcServer\Annotation\RpcService;
 use App\Service\MinioService;
 use Hyperf\Redis\Redis;
+use Overtrue\ChineseCalendar\Calendar;
 
 use App\Model\TemplateClass;
 use App\Model\Template;
@@ -755,6 +757,81 @@ class PublicRpcService implements PublicRpcServiceInterface
             ->get();
         return Result::success($result);
     }
+
+    /**
+     * 获取经纬度信息
+     * @return void
+     */
+    public function getIpInfo(array $data) :array
+    {
+        $client_ip = isset($data['ip']) && $data['ip']??$_SERVER['REMOTE_ADDR'];
+        // 使用 IPinfo 服务获取 IP 信息
+        $api_url = "https://ipinfo.io/{$client_ip}/json";
+        $ch = curl_init($api_url);
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+        $response = curl_exec($ch);
+        curl_close($ch);
+        // 解析 JSON 响应
+        $ip_info = json_decode($response, true);
+        // 提取地址和经纬度
+        if ($ip_info && !isset($ip_info['bogon'])) {
+            $latitude = explode(',', $ip_info['loc'])[0];
+            $longitude = explode(',', $ip_info['loc'])[1];
+            $ip_info['latitude'] = $latitude;
+            $ip_info['longitude'] = $longitude;
+            return Result::success($ip_info);
+        } else {
+            $data['ip'] = '101.254.114.212';
+            $this->getIpinfo(["ip"=>$data['ip']]);
+        }
+    }
+
+    /**
+     * 获取天气
+     * @param array $data
+     * @return array
+     */
+    public function getWeatherInfo(array $data) :array
+    {
+        $month = $data['month'] ?? date('m');
+        $day = $data['day'] ?? date('d');
+        // 使用缓存键
+        $cacheKey = "tsbb_data_weather_{$month}_{$day}";
+
+        // 尝试从缓存获取数据
+        $container = \Hyperf\Context\ApplicationContext::getContainer();
+        $cache = $container->get(\Psr\SimpleCache\CacheInterface::class);
+        if ($cachedData = $cache->get($cacheKey)) {
+            return Result::success(unserialize($cachedData));
+        }
+        $location = $data['latitude'].":".$data['longitude'];
+        $api_url = "https://api.seniverse.com/v3/weather/now.json?key=".\Hyperf\Support\env('WEATHER_KEY')."&location=".$location."&language=zh-Hans&unit=c";
+        $ch = curl_init($api_url);
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+        $response = curl_exec($ch);
+        curl_close($ch);
+        // 解析 JSON 响应
+        $WeatherInfo = json_decode($response, true);
+        // 缓存结果,设置1小时过期
+        $cache->set($cacheKey, serialize($WeatherInfo), 3600);
+        if($WeatherInfo){
+            return Result::success($WeatherInfo);
+        }else{
+            return Result::error("获取天气失败", 0);
+        }
+    }
+
+    /**
+     * 获取农历信息
+     * @return void
+     */
+    public function getCalendar(array $data) :array
+    {
+        $calendar = new Calendar();
+        $result = $calendar->solar($data['year'], $data['month'], $data['day'], $data['hour']); // 阳历
+        return Result::success($result);
+    }
+
     public function addSector(array $data): array
     {
         unset($data['user_id']);
@@ -869,4 +946,5 @@ class PublicRpcService implements PublicRpcServiceInterface
             return Result::error('暂无数据');
         }
     }
+
 }

+ 3 - 0
app/JsonRpc/PublicRpcServiceInterface.php

@@ -168,4 +168,7 @@ interface PublicRpcServiceInterface
     public function addBlackWord(array $data): array;
     public function delBlackWord(array $data): array;
     public function upBlackWord(array $data): array;
+    public function getIpInfo(array $data): array;
+    public function getWeatherInfo(array $data): array;
+    public function getCalendar(array $data): array;
 }

+ 450 - 17
app/JsonRpc/WebsiteService.php

@@ -30,7 +30,8 @@ use App\Model\JobHunting;
 use App\Model\Notice;
 use App\Model\Complaint;
 use App\Model\Order;
-
+use App\Model\WebsiteImg;
+use Hyperf\HttpServer\Contract\RequestInterface;
 
 use Hyperf\DbConnection\Db;
 use Hyperf\RpcServer\Annotation\RpcService;
@@ -44,6 +45,8 @@ use PhpParser\Node\Stmt\Return_;
 use function PHPUnit\Framework\isNull;
 use Overtrue\Pinyin\Pinyin;
 use App\Tools\buildTree;
+use App\Model\WhiteRouter;
+use App\Model\Size;
 
 #[RpcService(name: "WebsiteService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
 class WebsiteService implements WebsiteServiceInterface
@@ -840,43 +843,59 @@ class WebsiteService implements WebsiteServiceInterface
     }
 
     /**
-     * 获取模板类型
+     * 获取风格
      * @return void
      */
     public function getTemplateClass(array $data): array
     {
+        // return Result::success($data);
         $where = [];
         if (isset($data['name']) && $data['name']) {
             array_push($where, ['name', 'like', '%' . $data['name'] . '%']);
         }
-        $result = TemplateClass::where($where)->orderBy('sort', 'asc')->get();
+        $template = TemplateClass::when($where, function ($query) use ($where) {
+            $query->where($where);
+        })
+            ->orderBy('updated_at', 'desc');
+        $count = $template->count();
+        $row = $template
+            ->offset(($data['page'] - 1) * $data['pageSize'])
+            ->limit($data['pageSize'])
+            ->get();
+        $result = [
+            'rows' => $row,
+            'count' => $count,
+        ];
         if (empty($result)) {
-            return Result::error("没有模板类型", 0);
+            return Result::error("暂无风格", 0);
         } else {
             return Result::success($result);
         }
     }
 
     /**
-     * 添加模板类型
+     * 添加风格
      * @param
      * @return void
      */
     public function addTemplateClass(array $data): array
     {
-        $insertData = [
-            'name' => $data['name'],
-        ];
-        $result = TemplateClass::insertGetId($insertData);
+        $data['keyword'] = json_encode($data['keyword']);
+        $template = TemplateClass::where(['name' => $data['name']])->first();
+        if ($template) {
+            return Result::error("风格名称已存在", 0);
+        }
+        // return Result::success($data);
+        $result = TemplateClass::insertGetId($data);
         if (empty($result)) {
-            return Result::error("创建失败", 0);
+            return Result::error("创建风格失败", 0);
         } else {
             return Result::success(["id" => $result]);
         }
     }
 
     /**
-     * 更新模板
+     * 更新风格
      * @param array $data
      * @return array
      */
@@ -885,19 +904,31 @@ class WebsiteService implements WebsiteServiceInterface
         $where = [
             'id' => $data['id'],
         ];
-        $insertData = [
+        $template = TemplateClass::where($where)->first();
+        if (empty($template)) {
+            return Result::error("未查询到风格", 0);
+        }
+        if ($template->type == 1) {
+            return Result::error("默认风格不能修改", 0);
+        }
+        $template = TemplateClass::where(['name' => $data['name']])->where('id', '!=', 'id')->first();
+        if ($template) {
+            return Result::error("风格名称已存在", 0);
+        }
+        $updateData = [
             'name' => $data['name'],
+            'keyword' => json_encode($data['keyword']),
         ];
-        $result = TemplateClass::where($where)->update($insertData);
+        $result = TemplateClass::where($where)->update($updateData);
         if (empty($result)) {
             return Result::error("更新失败", 0);
         } else {
-            return Result::success();
+            return Result::success($result);
         }
     }
 
     /**
-     * 删除模板
+     * 删除风格
      * @param array $data
      * @return array
      */
@@ -906,12 +937,18 @@ class WebsiteService implements WebsiteServiceInterface
         $where = [
             'id' => $data['id'],
         ];
-
+        $template = TemplateClass::where($where)->first();
+        if (empty($template)) {
+            return Result::error("未查询到风格", 0);
+        }
+        if ($template->type == 1) {
+            return Result::error("默认风格不能删除", 0);
+        }
         $result = TemplateClass::where($where)->delete();
         if (empty($result)) {
             return Result::error("删除失败", 0);
         } else {
-            return Result::success();
+            return Result::success($result);
         }
     }
 
@@ -2533,4 +2570,400 @@ class WebsiteService implements WebsiteServiceInterface
             return Result::error("更新失败", 0);
         }
     }
+
+    //获取底部导航内容详情
+    public function getFooterContentInfo(array $data): array
+    {
+        $where = [
+            "id" => $data['content_id']
+        ];
+        $result = FooterContent::where($where)->first();
+        if ($result) {
+            return Result::success($result);
+        } else {
+            return Result::error("没有数据");
+        }
+    }
+    //获取底部导航内容列表
+    public function getFooterContentList(array $data): array
+    {
+        $where = [
+            "fcat_id" => $data['fcat_id'],
+        ];
+        switch (intval($data['type'])) {
+            case 0:
+                $result = FooterContent::where($where)->first();
+                break;
+            case 1:
+                $result = FooterContent::where($where)->get();
+                break;
+        }
+        if ($result) {
+            return Result::success($result);
+        } else {
+            return Result::error("没有数据");
+        }
+    }
+
+    /**
+     * 获取底部导航列表
+     * @param array $data
+     * @return array
+     */
+    public function getFooterCategoryList(array $data): array
+    {
+        $where = [
+            "website_id" => $data['website_id']
+        ];
+        $result = FooterCategory::where($where)->get();
+        if ($result) {
+            return Result::success($result);
+        } else {
+            return Result::error("没有数据");
+        }
+    }
+    // --自助建站-----------20250522fr----------------------start
+    /**
+     * 获取网站模板下的板块信息
+     * @param array $data
+     * @return array
+     */
+    public function getStaticResourceList(array $data): array
+    {
+        // return Result::success($data);
+        $where = [];
+        if (isset($data['img_alias']) && !empty($data['img_alias'])) {
+            array_push($where, ['website_img.img_alias', 'like', '%' . $data['img_alias'] . '%']);
+        }
+        if (isset($data['img_type']) && !empty($data['img_type'])) {
+            array_push($where, ['website_img.img_type', '=', $data['img_type']]);
+        }
+        if (isset($data['website_name']) && !empty($data['website_name'])) {
+            $website = Website::where('website_name', 'like', '%' . $data['website_name'] . '%')->first();
+            if (empty($website)) {
+                return Result::error("没有查找到相关数据", 0);
+            } else {
+                array_push($where, ['website_img.website_id', '=', $website['id']]);
+            }
+        }
+        // return Result::success($where);
+        $query = WebsiteImg::when(!empty($where), function ($query) use ($where) {
+            $query->where($where);
+        })
+            ->orderBy('updated_at', 'desc');
+        $count = $query->count();
+        $row = $query->leftJoin('website', 'website.id', '=', 'website_img.website_id')
+            ->select('website_img.*', 'website.website_name')
+            ->limit($data['pageSize'])
+            ->offset(($data['page'] - 1) * $data['pageSize'])
+            ->get();
+        if (empty($row)) {
+            return Result::error("没有查找到相关数据", 0);
+        } else {
+            $result = [
+                'row' => $row,
+                'count' => $count,
+            ];
+        }
+        return Result::success($result);
+    }
+    /**
+     * 添加网站模板下的板块信息
+     * @param array $data
+     */
+    public function addStaticResource(array $data): array
+    {
+        // $file = $data['img_url']->file('image');
+        // $size = $file->getSize();
+        $img_data = [
+            'website_id' => $data['website_id'] ?? 0,
+            'img_alias' => $data['img_alias'] ?? '',
+            'img_url' => $data['img_url'],
+            'img_size' => $data['img_size'],
+        ];
+        $img = WebsiteImg::insertGetId($img_data);
+        if (empty($img)) {
+            return Result::error("添加失败", 0);
+        }
+        $img_id['id'] = $img;
+        $url = WebsiteImg::where($img_id)->value('img_url');
+
+        // 1. 分割路径部分(以 / 为分隔符)
+        $pathSegments = explode('/', parse_url($url, PHP_URL_PATH));
+
+        // 2. 取最后一个元素作为文件名
+        $fileName = end($pathSegments); // 1743041040714597.jpg
+
+        // 3. 分割文件名获取扩展名
+        $fileParts = explode('.', $fileName);
+        $fileType = end($fileParts); // jpg
+
+
+        $img_datas = [
+            'img_type' => $fileType,
+            'name' => $fileName
+        ];
+        $up_img = WebsiteImg::where($img_id)->update($img_datas);
+        if (empty($up_img)) {
+            return Result::error("修改失败", 0);
+        }
+        return Result::success($up_img);
+        // 将字节转换为更友好的单位
+        // $friendlySize = $this->formatFileSize($size);
+        // $data['img_size'] = $friendlySize;
+
+
+    }
+    /**
+     * 修改网站模板下的板块信息
+     * @param array $data
+     */
+    public function delStaticResource(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        $result = WebsiteImg::where($where)->delete();
+        if (empty($result)) {
+
+            return Result::error("修改失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 获取尺寸列表
+     * @param array $data
+     */
+    public function getSizeList(array $data): array
+    {
+        $where = [];
+        if (isset($data['width']) && !empty($data['width'])) {
+            array_push($where, ['width', 'like', '%' . $data['width'] . '%']);
+        }
+        if (isset($data['height']) && !empty($data['height'])) {
+            array_push($where, ['height', 'like', '%' . $data['height'] . '%']);
+        }
+        $query = Size::when($where, function ($query) use ($where) {
+            $query->where($where);
+        })
+            ->orderBy('updated_at', 'desc');
+        $count = $query->count();
+        $rep = $query
+            ->offset(($data['page'] - 1) * $data['pageSize'])
+            ->limit($data['pageSize'])
+            ->get();
+        $result = [
+            'row' => $rep,
+            'count' => $count,
+        ];
+        if (empty($result)) {
+            return Result::error("获取失败", 0);
+        } else {
+            return Result::success($result);
+        }
+    }
+    /**
+     * 添加尺寸
+     * @param array $data
+     */
+    public function addSize(array $data): array
+    {
+        $size = Size::where('width', $data['width'])->where('height', $data['height'])->first();
+        if (!empty($size)) {
+            return Result::error("尺寸已存在", 0);
+        }
+        $result = Size::insertGetId($data);
+        if (empty($result)) {
+            return Result::error("添加失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 删除尺寸
+     * @param array $data
+     */
+    public function delSize(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        $result = Size::where($where)->delete();
+        if (empty($result)) {
+            return Result::error("删除失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 修改尺寸
+     * @param array $data
+     */
+    public function upSize(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        $size = Size::where('id', '!=', $data['id'])->where('width', $data['width'])->where('height', $data['height'])->first();
+        if (!empty($size)) {
+            return Result::error("尺寸已存在", 0);
+        }
+        $result = Size::where($where)->update($data);
+        if (empty($result)) {
+            return Result::error("修改失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 获取尺寸详情
+     * @param array $data
+     */
+    public function getSizeInfo(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        $result = Size::where($where)->first();
+        if (empty($result)) {
+            return Result::error("获取失败", 0);
+        } else {
+            return Result::success($result);
+        }
+    }
+    // --自助建站-----------20250522fr----------------------end
+
+    /**
+     * 获取网站白名单路由地址
+     * @param array $data
+     * @return array
+     */
+    public function getWhiteRouterList(array $data): array
+    {
+        // 构建基础查询
+        $baseQuery = WhiteRouter::query();
+
+        // 功能名称模糊查询
+        if (!empty($data['function_name'])) {
+            $baseQuery->where('function_name', 'like', '%' . $data['function_name'] . '%');
+        }
+
+        // 网站ID查询 - 使用 JSON_CONTAINS 检查数组中是否包含指定的 website_id
+        if (!empty($data['website_id'])) {
+            $baseQuery->whereRaw('JSON_CONTAINS(website_id, ?)', [json_encode((int)$data['website_id'])]);
+        }
+
+        // 获取总数
+        $count = $baseQuery->count();
+
+        // 分页查询
+        $result = $baseQuery->orderBy('updated_at', 'desc')
+            ->limit($data['pageSize'])
+            ->offset(($data['page'] - 1) * $data['pageSize'])
+            ->get();
+
+        if (empty($result)) {
+            return Result::error("暂无数据", 0);
+        }
+
+        // 处理结果,将 website_id 转换为数组并获取对应的网站名称
+        $result->transform(function ($item) {
+            $websiteIds = json_decode($item->website_id, true);
+            $websiteNames = Website::whereIn('id', $websiteIds)
+                ->pluck('website_name')
+                ->toArray();
+            $item->website_names = $websiteNames;
+            $item->website_id = $websiteIds; // 将 website_id 转换为数组
+            return $item;
+        });
+
+        return Result::success([
+            'rows' => $result->toArray(),
+            'count' => $count
+        ]);
+    }
+    /**
+     * 添加网站白名单路由地址
+     * @param array $data
+     * @return array
+     */
+    public function addWhiteRouter(array $data): array
+    {
+        // 确保 website_id 是数组
+        $websiteIds = is_array($data['website_id']) ? $data['website_id'] : [$data['website_id']];
+        // 过滤空值并去重
+        $websiteIds = array_filter($websiteIds);
+        $websiteIds = array_unique($websiteIds);
+        // 将数组中的值转换为整数
+        $websiteIds = array_map(function ($value) {
+            return (int)$value;
+        }, $websiteIds);
+        // 转换为 JSON 字符串存储
+        $data['website_id'] = json_encode($websiteIds);
+
+        $result = WhiteRouter::insertGetId($data);
+        if (empty($result)) {
+            return Result::error("添加失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 修改网站白名单路由地址
+     * @param array $data
+     * @return array        
+     */
+    public function upWhiteRouter(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        // 确保 website_id 是数组
+        $websiteIds = is_array($data['website_id']) ? $data['website_id'] : [$data['website_id']];
+        // 过滤空值并去重
+        $websiteIds = array_filter($websiteIds);
+        $websiteIds = array_unique($websiteIds);
+        // 将数组中的值转换为整数
+        $websiteIds = array_map(function ($value) {
+            return (int)$value;
+        }, $websiteIds);
+        // 转换为 JSON 字符串存储
+        $data['website_id'] = json_encode($websiteIds);
+
+        $result = WhiteRouter::where($where)->update($data);
+        if (empty($result)) {
+            return Result::error("修改失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 删除网站白名单路由地址
+     * @param array $data
+     * @return array
+     */
+    public function delWhiteRouter(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        $result = WhiteRouter::where($where)->delete();
+        if (empty($result)) {
+            return Result::error("删除失败", 0);
+        }
+        return Result::success($result);
+    }
+    /**
+     * 获取网站白名单路由地址详情
+     * @param array $data
+     * @return array
+     */
+    public function getWhiteRouterInfo(array $data): array
+    {
+        $where = [
+            'id' => $data['id'],
+        ];
+        $result = WhiteRouter::where($where)->first();
+        if (empty($result)) {
+            return Result::error("没有查找到相关数据", 0);
+        }
+        // 将 website_id 从 JSON 字符串转换为数组
+        $result->website_id = json_decode($result->website_id, true);
+        return Result::success($result);
+    }
 }

+ 25 - 0
app/JsonRpc/WebsiteServiceInterface.php

@@ -138,4 +138,29 @@ interface WebsiteServiceInterface
     public function getWebsiteHead(array $data): array;
     
     public function getWebsiteRoute(array $data): array;
+
+
+    public function getFooterCategoryList(array $data): array;
+    public function getFooterContentList(array $data): array;
+    public function getFooterContentInfo(array $data): array;
+
+
+    // --自助建站-----------20250522fr----------------------start
+    public function getStaticResourceList(array $data): array;
+    public function addStaticResource(array $data): array;
+    public function delStaticResource(array $data): array;
+
+//    public function getStaticResourceInfo(array $data): array;//冯蕊让删除的
+    public function getWhiteRouterList(array $data): array;
+    public function addWhiteRouter(array $data): array;
+    public function upWhiteRouter(array $data): array;
+    public function delWhiteRouter(array $data): array;
+    public function getWhiteRouterInfo(array $data): array;
+
+    public function getSizeList(array $data): array;
+    public function addSize(array $data): array;
+    public function delSize(array $data): array;
+    public function upSize(array $data): array;
+    public function getSizeInfo(array $data): array;
+
 }

+ 27 - 0
app/Model/Size.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class Size extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'size';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $guarded = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 27 - 0
app/Model/WebsiteImg.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class WebsiteImg extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'website_img';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 27 - 0
app/Model/WhiteRouter.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class WhiteRouter extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'white_router';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 1 - 0
composer.json

@@ -39,6 +39,7 @@
         "hyperf/service-governance-consul": "^3.1",
         "hyperf/service-governance-nacos": "^3.1",
         "hyperf/utils": "^3.1",
+        "overtrue/chinese-calendar": "^1.0",
         "overtrue/pinyin": "*"
     },
     "require-dev": {

File diff suppressed because it is too large
+ 333 - 173
composer.lock


File diff suppressed because it is too large
+ 0 - 0
runtime/container/scan.cache


+ 0 - 1
runtime/hyperf.pid

@@ -1 +0,0 @@
-18756

+ 0 - 453
runtime/logs/hyperf.log

@@ -1,453 +0,0 @@
-[2025-02-20T13:51:55.780209+08:00] sql.INFO: [38.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T13:51:56.118579+08:00] sql.INFO: [74.73] select `website_category`.*, `category`.`is_url`, `category`.`web_url`, (select count(*) from `website_category` as `hyperf_reserved_0` where `website_category`.`category_id` = `hyperf_reserved_0`.`pid` and `website_category`.`website_id` = '2') as `children_count` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:02:31.286834+08:00] sql.INFO: [25.01] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:02:33.287630+08:00] sql.INFO: [3.71] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:02:34.456366+08:00] sql.INFO: [5.72] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:04:32.754562+08:00] sql.INFO: [24.42] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:04:34.833361+08:00] sql.INFO: [4.34] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:05:24.977863+08:00] sql.INFO: [21.96] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:06:41.110883+08:00] sql.INFO: [40.21] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:06:41.285664+08:00] sql.INFO: [13.15] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`ad_place`.`website_id` = '2' and `ad_place`.`status` = '1' and `ad_place`.`id` = '15') and `ad`.`fromtime` <= '2025-02-20 14:06:41' and `ad`.`totime` >= '2025-02-20 14:06:41' [] []
-[2025-02-20T14:06:56.402791+08:00] sql.INFO: [70.98] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:06:56.583169+08:00] sql.INFO: [4.33] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`ad_place`.`website_id` = '2' and `ad_place`.`status` = '1' and `ad_place`.`id` = '15') and `ad`.`fromtime` <= '2025-02-20 14:06:56' and `ad`.`totime` >= '2025-02-20 14:06:56' [] []
-[2025-02-20T14:07:06.114875+08:00] sql.INFO: [3.68] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:07:07.764772+08:00] sql.INFO: [5.46] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:07:08.685272+08:00] sql.INFO: [5.11] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:07:28.593414+08:00] sql.INFO: [22.79] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:07:28.772731+08:00] sql.INFO: [4.34] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`ad_place`.`website_id` = '2' and `ad_place`.`status` = '1') and `ad`.`fromtime` <= '2025-02-20 14:07:28' and `ad`.`totime` >= '2025-02-20 14:07:28' [] []
-[2025-02-20T14:14:28.792600+08:00] sql.INFO: [44.48] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:14:30.576185+08:00] sql.INFO: [4] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:14:56.736677+08:00] sql.INFO: [14.92] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:14:56.985384+08:00] sql.INFO: [62.73] select `website_category`.*, `category`.`is_url`, `category`.`web_url`, (select count(*) from `website_category` as `hyperf_reserved_0` where `website_category`.`category_id` = `hyperf_reserved_0`.`pid` and `website_category`.`website_id` = '2') as `children_count` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:19:30.872843+08:00] sql.INFO: [12.05] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:19:31.066903+08:00] sql.INFO: [7.58] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:19:31.108650+08:00] sql.INFO: [16.73] select * from `website_category` where `website_category`.`pid` in ('1', '2', '3', '5', '11', '12', '13', '14', '15', '16', '18', '19', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '138', '150') and `website_category`.`website_id` = '2' [] []
-[2025-02-20T14:22:31.228440+08:00] sql.INFO: [13.12] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:22:31.504043+08:00] sql.INFO: [68.26] select `website_category`.*, `category`.`is_url`, `category`.`web_url`, (select count(*) from `website_category` as `hyperf_reserved_0` where `website_category`.`category_id` = `hyperf_reserved_0`.`pid` and `website_category`.`website_id` = '2') as `children_count` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:22:47.693567+08:00] sql.INFO: [4.12] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:22:47.755413+08:00] sql.INFO: [58.88] select `website_category`.*, `category`.`is_url`, `category`.`web_url`, (select count(*) from `website_category` as `hyperf_reserved_1` where `website_category`.`category_id` = `hyperf_reserved_1`.`pid` and `website_category`.`website_id` = '2') as `children_count` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:22:50.993511+08:00] sql.INFO: [16.49] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:22:51.169938+08:00] sql.INFO: [7.64] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:22:51.212833+08:00] sql.INFO: [17.63] select * from `website_category` where `website_category`.`pid` in ('1', '2', '3', '5', '11', '12', '13', '14', '15', '16', '18', '19', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '138', '150') and `website_category`.`website_id` = '2' [] []
-[2025-02-20T14:24:49.304216+08:00] sql.INFO: [14.72] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:24:49.499882+08:00] sql.INFO: [7.35] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:24:49.541199+08:00] sql.INFO: [6.74] select * from `website_category` where `website_category`.`category_id` in ('0') and `website_category`.`website_id` = '2' [] []
-[2025-02-20T14:25:07.208184+08:00] sql.INFO: [4.09] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:25:07.218720+08:00] sql.INFO: [7.41] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:25:07.229825+08:00] sql.INFO: [6.14] select * from `website_category` where `website_category`.`category_id` in ('0') and `website_category`.`website_id` = '2' [] []
-[2025-02-20T14:25:11.571599+08:00] sql.INFO: [13.98] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:25:11.775921+08:00] sql.INFO: [7.73] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:25:11.817008+08:00] sql.INFO: [7.49] select * from `website_category` where `website_category`.`pid` in ('1', '2', '3', '5', '11', '12', '13', '14', '15', '16', '18', '19', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '138', '150') and `website_category`.`website_id` = '2' [] []
-[2025-02-20T14:32:18.654927+08:00] sql.INFO: [15.47] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:32:18.857872+08:00] sql.INFO: [7.44] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:32:18.868833+08:00] sql.INFO: [5.54] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '11' [] []
-[2025-02-20T14:32:18.874198+08:00] sql.INFO: [4.87] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '138' [] []
-[2025-02-20T14:32:18.879624+08:00] sql.INFO: [4.93] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '1' [] []
-[2025-02-20T14:32:18.885014+08:00] sql.INFO: [4.87] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '2' [] []
-[2025-02-20T14:32:18.890265+08:00] sql.INFO: [4.72] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '5' [] []
-[2025-02-20T14:32:18.895367+08:00] sql.INFO: [4.58] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '12' [] []
-[2025-02-20T14:32:18.900500+08:00] sql.INFO: [4.63] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '13' [] []
-[2025-02-20T14:32:18.905651+08:00] sql.INFO: [4.62] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '14' [] []
-[2025-02-20T14:32:18.911044+08:00] sql.INFO: [4.9] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '15' [] []
-[2025-02-20T14:32:18.916177+08:00] sql.INFO: [4.52] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '16' [] []
-[2025-02-20T14:32:18.921440+08:00] sql.INFO: [4.65] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '19' [] []
-[2025-02-20T14:32:18.926522+08:00] sql.INFO: [4.61] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '150' [] []
-[2025-02-20T14:32:18.931641+08:00] sql.INFO: [4.54] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '22' [] []
-[2025-02-20T14:32:18.936690+08:00] sql.INFO: [4.63] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '18' [] []
-[2025-02-20T14:32:18.942018+08:00] sql.INFO: [4.87] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '21' [] []
-[2025-02-20T14:32:18.947092+08:00] sql.INFO: [4.6] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '3' [] []
-[2025-02-20T14:32:18.952181+08:00] sql.INFO: [4.57] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '23' [] []
-[2025-02-20T14:32:18.957552+08:00] sql.INFO: [4.8] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '24' [] []
-[2025-02-20T14:32:18.962514+08:00] sql.INFO: [4.44] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '25' [] []
-[2025-02-20T14:32:18.967355+08:00] sql.INFO: [4.38] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '26' [] []
-[2025-02-20T14:32:18.972908+08:00] sql.INFO: [5.1] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '27' [] []
-[2025-02-20T14:32:18.978051+08:00] sql.INFO: [4.45] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '28' [] []
-[2025-02-20T14:32:18.982764+08:00] sql.INFO: [4.25] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '29' [] []
-[2025-02-20T14:32:18.988090+08:00] sql.INFO: [4.83] select count(*) as aggregate from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '30' [] []
-[2025-02-20T14:32:58.847023+08:00] sql.INFO: [12.99] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:32:59.028874+08:00] sql.INFO: [6.4] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:32:59.038751+08:00] sql.INFO: [4.37] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '11' [] []
-[2025-02-20T14:32:59.043340+08:00] sql.INFO: [4.05] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '138' [] []
-[2025-02-20T14:32:59.048238+08:00] sql.INFO: [4.36] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '1' [] []
-[2025-02-20T14:32:59.053460+08:00] sql.INFO: [4.67] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '2' [] []
-[2025-02-20T14:32:59.057894+08:00] sql.INFO: [3.99] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '5' [] []
-[2025-02-20T14:32:59.062316+08:00] sql.INFO: [3.9] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '12' [] []
-[2025-02-20T14:32:59.066645+08:00] sql.INFO: [3.86] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '13' [] []
-[2025-02-20T14:32:59.070892+08:00] sql.INFO: [3.79] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '14' [] []
-[2025-02-20T14:32:59.075977+08:00] sql.INFO: [4.64] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '15' [] []
-[2025-02-20T14:32:59.080448+08:00] sql.INFO: [3.95] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '16' [] []
-[2025-02-20T14:32:59.084593+08:00] sql.INFO: [3.7] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '19' [] []
-[2025-02-20T14:32:59.089060+08:00] sql.INFO: [4.01] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '150' [] []
-[2025-02-20T14:32:59.093563+08:00] sql.INFO: [4.06] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '22' [] []
-[2025-02-20T14:32:59.097816+08:00] sql.INFO: [3.77] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '18' [] []
-[2025-02-20T14:32:59.102275+08:00] sql.INFO: [4.06] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '21' [] []
-[2025-02-20T14:32:59.107123+08:00] sql.INFO: [4.3] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '3' [] []
-[2025-02-20T14:32:59.111660+08:00] sql.INFO: [3.96] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '23' [] []
-[2025-02-20T14:32:59.116277+08:00] sql.INFO: [4.25] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '24' [] []
-[2025-02-20T14:32:59.120603+08:00] sql.INFO: [3.89] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '25' [] []
-[2025-02-20T14:32:59.124840+08:00] sql.INFO: [3.76] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '26' [] []
-[2025-02-20T14:32:59.129147+08:00] sql.INFO: [3.87] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '27' [] []
-[2025-02-20T14:32:59.133405+08:00] sql.INFO: [3.8] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '28' [] []
-[2025-02-20T14:32:59.138140+08:00] sql.INFO: [4.3] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '29' [] []
-[2025-02-20T14:32:59.142438+08:00] sql.INFO: [3.81] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '30' [] []
-[2025-02-20T14:33:35.139785+08:00] sql.INFO: [14.92] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:33:39.372011+08:00] sql.INFO: [26.37] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T14:33:39.551411+08:00] sql.INFO: [6.2] select `website_category`.*, `category`.`is_url`, `category`.`web_url` from `website_category` left join `category` on `website_category`.`category_id` = `category`.`id` where (`website_category`.`website_id` = '2') and (`website_category`.`pid` = '0') order by `website_category`.`sort` asc limit 24 offset 0 [] []
-[2025-02-20T14:33:39.561051+08:00] sql.INFO: [3.88] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '11' [] []
-[2025-02-20T14:33:39.565027+08:00] sql.INFO: [3.42] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '138' [] []
-[2025-02-20T14:33:39.568971+08:00] sql.INFO: [3.54] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '1' [] []
-[2025-02-20T14:33:39.573210+08:00] sql.INFO: [3.74] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '2' [] []
-[2025-02-20T14:33:39.577246+08:00] sql.INFO: [3.61] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '5' [] []
-[2025-02-20T14:33:39.581640+08:00] sql.INFO: [3.77] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '12' [] []
-[2025-02-20T14:33:39.586189+08:00] sql.INFO: [4.06] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '13' [] []
-[2025-02-20T14:33:39.590400+08:00] sql.INFO: [3.63] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '14' [] []
-[2025-02-20T14:33:39.594508+08:00] sql.INFO: [3.64] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '15' [] []
-[2025-02-20T14:33:39.599055+08:00] sql.INFO: [3.97] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '16' [] []
-[2025-02-20T14:33:39.603479+08:00] sql.INFO: [3.94] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '19' [] []
-[2025-02-20T14:33:39.607719+08:00] sql.INFO: [3.74] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '150' [] []
-[2025-02-20T14:33:39.612835+08:00] sql.INFO: [4.65] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '22' [] []
-[2025-02-20T14:33:39.617285+08:00] sql.INFO: [3.97] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '18' [] []
-[2025-02-20T14:33:39.622072+08:00] sql.INFO: [4.15] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '21' [] []
-[2025-02-20T14:33:39.626394+08:00] sql.INFO: [3.81] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '3' [] []
-[2025-02-20T14:33:39.630502+08:00] sql.INFO: [3.67] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '23' [] []
-[2025-02-20T14:33:39.635258+08:00] sql.INFO: [4.34] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '24' [] []
-[2025-02-20T14:33:39.639756+08:00] sql.INFO: [3.93] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '25' [] []
-[2025-02-20T14:33:39.644186+08:00] sql.INFO: [3.97] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '26' [] []
-[2025-02-20T14:33:39.648918+08:00] sql.INFO: [4.23] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '27' [] []
-[2025-02-20T14:33:39.653518+08:00] sql.INFO: [4.18] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '28' [] []
-[2025-02-20T14:33:39.658707+08:00] sql.INFO: [4.57] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '29' [] []
-[2025-02-20T14:33:39.663357+08:00] sql.INFO: [4.16] select count(*) as aggregate from `website_category` where (`website_category`.`website_id` = '2') and `website_category`.`pid` = '30' [] []
-[2025-02-20T15:09:33.907502+08:00] sql.INFO: [13.36] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T15:10:54.163833+08:00] sql.INFO: [8.81] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T15:15:30.154179+08:00] sql.INFO: [9.32] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T15:17:15.498950+08:00] sql.INFO: [9.89] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T15:17:17.071081+08:00] sql.INFO: [3.99] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:07:13.956350+08:00] sql.INFO: [14.01] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:35.278782+08:00] sql.INFO: [12.46] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:40.278384+08:00] sql.INFO: [5.3] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:41.406736+08:00] sql.INFO: [4.31] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:42.425132+08:00] sql.INFO: [3.62] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:45.562740+08:00] sql.INFO: [4.96] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:47.068985+08:00] sql.INFO: [3.62] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:09:52.939300+08:00] sql.INFO: [3.61] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:10:13.217461+08:00] sql.INFO: [3.42] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:10:36.136427+08:00] sql.INFO: [3.85] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:10:37.954580+08:00] sql.INFO: [4.13] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:11:31.717723+08:00] sql.INFO: [4.17] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:11:33.006604+08:00] sql.INFO: [3.62] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:11:34.369972+08:00] sql.INFO: [3.89] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:11:35.270780+08:00] sql.INFO: [3.28] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:13:11.331323+08:00] sql.INFO: [9.02] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:13:13.923754+08:00] sql.INFO: [3.66] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:13:14.926974+08:00] sql.INFO: [4.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:13:31.270183+08:00] sql.INFO: [3.85] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:13:33.351822+08:00] sql.INFO: [3.64] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:13:34.675101+08:00] sql.INFO: [4.71] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:14:09.338250+08:00] sql.INFO: [3.95] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:14:11.468844+08:00] sql.INFO: [3.81] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:14:12.720865+08:00] sql.INFO: [3.9] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:14:34.683951+08:00] sql.INFO: [3.77] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:14:36.358881+08:00] sql.INFO: [4.19] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:14:37.452697+08:00] sql.INFO: [3.83] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:15:19.936499+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:15:21.438817+08:00] sql.INFO: [3.76] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:15:22.722170+08:00] sql.INFO: [3.92] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:15:23.704022+08:00] sql.INFO: [3.46] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:15:25.836359+08:00] sql.INFO: [3.68] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:16:14.559071+08:00] sql.INFO: [3.81] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:16:15.856837+08:00] sql.INFO: [3.66] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:16:16.788252+08:00] sql.INFO: [6.78] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:18:37.466197+08:00] sql.INFO: [10.67] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:18:39.430329+08:00] sql.INFO: [3.72] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:18:41.293144+08:00] sql.INFO: [4.18] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:23.902667+08:00] sql.INFO: [4.22] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:42.648438+08:00] sql.INFO: [4.04] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:45.186756+08:00] sql.INFO: [4.25] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:46.492278+08:00] sql.INFO: [3.98] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:47.373785+08:00] sql.INFO: [3.82] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:48.307318+08:00] sql.INFO: [3.91] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:19:49.152179+08:00] sql.INFO: [3.48] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:20:38.616938+08:00] sql.INFO: [3.79] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:23:18.954568+08:00] sql.INFO: [8.36] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:23:56.500579+08:00] sql.INFO: [3.79] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:23:57.856537+08:00] sql.INFO: [4.01] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:23:58.790422+08:00] sql.INFO: [3.73] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:24:01.322143+08:00] sql.INFO: [3.46] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:33:58.662206+08:00] sql.INFO: [8.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:33:59.839270+08:00] sql.INFO: [3.92] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:00.750106+08:00] sql.INFO: [3.51] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:01.680156+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:12.053170+08:00] sql.INFO: [4.36] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:13.105914+08:00] sql.INFO: [3.64] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:14.014579+08:00] sql.INFO: [3.91] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:14.925880+08:00] sql.INFO: [3.87] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:16.012578+08:00] sql.INFO: [4.53] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:17.429013+08:00] sql.INFO: [3.99] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:34:18.326683+08:00] sql.INFO: [3.88] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:38:03.113043+08:00] sql.INFO: [8.97] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:38:04.856223+08:00] sql.INFO: [3.67] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:38:06.038019+08:00] sql.INFO: [3.58] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:38:29.049343+08:00] sql.INFO: [6.31] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:38:31.851483+08:00] sql.INFO: [4.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:39:35.780248+08:00] sql.INFO: [10.13] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:45:35.053326+08:00] sql.INFO: [8.87] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:24.435290+08:00] sql.INFO: [4.18] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:25.518858+08:00] sql.INFO: [3.55] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:31.393557+08:00] sql.INFO: [3.79] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:53.428105+08:00] sql.INFO: [3.97] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:55.062718+08:00] sql.INFO: [4.61] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:55.944217+08:00] sql.INFO: [3.94] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:56.876296+08:00] sql.INFO: [3.9] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:57.719666+08:00] sql.INFO: [3.83] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:58.679229+08:00] sql.INFO: [4.75] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:46:59.946630+08:00] sql.INFO: [4.49] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:47:35.335662+08:00] sql.INFO: [3.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:47:38.945015+08:00] sql.INFO: [3.79] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:47:42.574614+08:00] sql.INFO: [4.1] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-20T17:50:04.288486+08:00] sql.INFO: [9.58] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:55:35.428872+08:00] sql.INFO: [21.12] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:57:14.529708+08:00] sql.INFO: [8.48] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:57:47.866289+08:00] sql.INFO: [3.39] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:08.843766+08:00] sql.INFO: [3.67] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:24.836817+08:00] sql.INFO: [3.8] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:25.817205+08:00] sql.INFO: [3.57] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:26.990360+08:00] sql.INFO: [3.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:28.077715+08:00] sql.INFO: [3.54] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:29.332112+08:00] sql.INFO: [3.94] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:30.410827+08:00] sql.INFO: [3.22] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:31.360160+08:00] sql.INFO: [3.68] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:32.328358+08:00] sql.INFO: [3.41] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:33.387068+08:00] sql.INFO: [4.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:34.831569+08:00] sql.INFO: [3.19] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T08:58:49.602668+08:00] sql.INFO: [3.44] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:01:07.572174+08:00] sql.INFO: [9.88] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:01:08.792233+08:00] sql.INFO: [3.29] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:01:38.471021+08:00] sql.INFO: [4.29] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:01:42.817679+08:00] sql.INFO: [4.2] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:06:10.563662+08:00] sql.INFO: [8.57] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:06:17.297489+08:00] sql.INFO: [3.57] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:06:33.745662+08:00] sql.INFO: [3.45] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:06:34.746443+08:00] sql.INFO: [3.54] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:06:41.456752+08:00] sql.INFO: [3.56] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:08:56.865741+08:00] sql.INFO: [8.55] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:08:57.892601+08:00] sql.INFO: [3.64] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:02.124200+08:00] sql.INFO: [5.35] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:10.023852+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:13.872205+08:00] sql.INFO: [4.1] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:24.697758+08:00] sql.INFO: [3.21] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:28.481333+08:00] sql.INFO: [3.4] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:38.855833+08:00] sql.INFO: [3.94] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:39.815007+08:00] sql.INFO: [3.64] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:09:43.830387+08:00] sql.INFO: [3.56] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:15:29.967124+08:00] sql.INFO: [8.53] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:15:31.126712+08:00] sql.INFO: [3.42] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:15:32.317606+08:00] sql.INFO: [3.61] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:15:36.537665+08:00] sql.INFO: [3.19] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:16:40.691276+08:00] sql.INFO: [8.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:16:46.826260+08:00] sql.INFO: [3.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:17:54.398489+08:00] sql.INFO: [7.73] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:17:56.547698+08:00] sql.INFO: [3.62] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:17:57.561609+08:00] sql.INFO: [3.33] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:19:21.976389+08:00] sql.INFO: [8.67] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:19:47.913796+08:00] sql.INFO: [3.49] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:19:48.798356+08:00] sql.INFO: [3.35] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:19:53.710356+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:20:16.099531+08:00] sql.INFO: [3.9] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:20:17.397844+08:00] sql.INFO: [3.9] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:20:21.080098+08:00] sql.INFO: [3.38] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:20:33.495818+08:00] sql.INFO: [2.44] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:20:38.207768+08:00] sql.INFO: [3.19] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:21:12.716633+08:00] sql.INFO: [3.2] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:21:35.026686+08:00] sql.INFO: [3.78] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:21:36.718098+08:00] sql.INFO: [3.49] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:23:33.266357+08:00] sql.INFO: [8.67] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:23:34.505203+08:00] sql.INFO: [4.14] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:23:35.731057+08:00] sql.INFO: [3.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:23:37.021904+08:00] sql.INFO: [4.13] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:23:37.959194+08:00] sql.INFO: [3.83] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:23:38.946118+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:37:18.854541+08:00] sql.INFO: [8.97] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T09:37:18.872262+08:00] sql.INFO: [3.63] select * from `ad_place` where (`website_id` = '2' and `status` = '1') [] []
-[2025-02-21T09:42:34.583341+08:00] sql.INFO: [8.87] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:00:55.010168+08:00] sql.INFO: [14.04] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:00:55.319181+08:00] sql.INFO: [3.69] select * from `ad_place` where (`website_id` = '2' and `status` = '1') [] []
-[2025-02-21T10:01:31.313969+08:00] sql.INFO: [3.24] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:03:19.830368+08:00] sql.INFO: [16.73] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:03:25.674124+08:00] sql.INFO: [3.95] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:04:31.718100+08:00] sql.INFO: [18.31] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:05:29.439623+08:00] sql.INFO: [3.68] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:05:34.570425+08:00] sql.INFO: [15.84] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:05:34.821613+08:00] sql.INFO: [3.29] select * from `ad_place` [] []
-[2025-02-21T10:05:53.735484+08:00] sql.INFO: [17.38] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:05:54.032817+08:00] sql.INFO: [3.69] select * from `ad_place` [] []
-[2025-02-21T10:06:10.549974+08:00] sql.INFO: [18.42] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:06:10.836347+08:00] sql.INFO: [3.65] select * from `ad_place` [] []
-[2025-02-21T10:06:15.325221+08:00] sql.INFO: [15.45] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:07:11.771113+08:00] sql.INFO: [16.94] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:07:12.057417+08:00] sql.INFO: [3.72] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:07:14.109297+08:00] sql.INFO: [3.79] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:07:14.114904+08:00] sql.INFO: [2.68] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:07:14.950362+08:00] sql.INFO: [3.42] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:07:14.957307+08:00] sql.INFO: [3.6] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:07:20.673642+08:00] sql.INFO: [4.14] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:07:20.679752+08:00] sql.INFO: [2.9] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:07:25.493815+08:00] sql.INFO: [16.69] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:07:25.789021+08:00] sql.INFO: [3.42] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:07.073425+08:00] sql.INFO: [3.85] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:07.080005+08:00] sql.INFO: [3.24] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:08.057662+08:00] sql.INFO: [3.42] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:08.063640+08:00] sql.INFO: [2.78] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:08.934250+08:00] sql.INFO: [4.1] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:08.941371+08:00] sql.INFO: [3.56] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:09.783278+08:00] sql.INFO: [3.36] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:09.789480+08:00] sql.INFO: [3.09] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:10.597996+08:00] sql.INFO: [3.66] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:10.604080+08:00] sql.INFO: [2.83] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:11.638718+08:00] sql.INFO: [3.88] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:11.645661+08:00] sql.INFO: [3.3] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:12.894845+08:00] sql.INFO: [3.48] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:12.900697+08:00] sql.INFO: [2.95] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:28.895828+08:00] sql.INFO: [3.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:28.901931+08:00] sql.INFO: [2.87] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:34.358719+08:00] sql.INFO: [17.81] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:34.615850+08:00] sql.INFO: [2.95] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:08:59.668783+08:00] sql.INFO: [3.35] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:08:59.674545+08:00] sql.INFO: [2.87] select * from `ad_place` where (`website_id` = '2' and `status` = '1' and `ad_tag` like '%INDEX%') [] []
-[2025-02-21T10:09:04.159046+08:00] sql.INFO: [17.43] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:09:04.460626+08:00] sql.INFO: [3.21] select * from `ad_place` where `ad_tag` like '%INDEX%' [] []
-[2025-02-21T10:09:05.886712+08:00] sql.INFO: [3.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:09:05.892626+08:00] sql.INFO: [2.89] select * from `ad_place` where `ad_tag` like '%INDEX%' [] []
-[2025-02-21T10:10:05.423798+08:00] sql.INFO: [3.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:10:05.429583+08:00] sql.INFO: [2.61] select * from `ad_place` where `ad_tag` like '%INDEDX%' [] []
-[2025-02-21T10:10:36.919581+08:00] sql.INFO: [3.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:10:36.925755+08:00] sql.INFO: [3.11] select * from `ad_place` where `ad_tag` like '%INDEDX%' [] []
-[2025-02-21T10:10:37.942371+08:00] sql.INFO: [3.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:10:37.949023+08:00] sql.INFO: [3.49] select * from `ad_place` where `ad_tag` like '%INDEDX%' [] []
-[2025-02-21T10:10:42.270427+08:00] sql.INFO: [18.76] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:16:46.141175+08:00] sql.INFO: [14.59] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:17:11.488695+08:00] sql.INFO: [17.58] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:17:11.812732+08:00] sql.INFO: [16.22] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 00:00:00' and '2025-02-21 23:59:59' and `ad`.`totime` >= '2025-02-21 10:17:11' [] []
-[2025-02-21T10:17:23.532544+08:00] sql.INFO: [4.09] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:17:23.541460+08:00] sql.INFO: [5.06] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 00:00:00' and '2025-02-21 23:59:59' and `ad`.`totime` >= '2025-02-21 10:17:23' [] []
-[2025-02-21T10:17:24.454855+08:00] sql.INFO: [3.45] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:17:24.629933+08:00] sql.INFO: [4.31] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 00:00:00' and '2025-02-21 23:59:59' and `ad`.`totime` >= '2025-02-21 10:17:24' [] []
-[2025-02-21T10:17:29.777524+08:00] sql.INFO: [16.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:17:30.090252+08:00] sql.INFO: [4.17] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 00:00:00' and '2025-02-21 23:59:59' and `ad`.`totime` >= '2025-02-21 10:17:30' [] []
-[2025-02-21T10:19:21.975532+08:00] sql.INFO: [9.54] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:19:21.982401+08:00] sql.INFO: [3.81] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 00:00:00' and '2025-02-21 23:59:59' and `ad`.`totime` >= '2025-02-21 10:19:21' [] []
-[2025-02-21T10:19:22.840994+08:00] sql.INFO: [3.6] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:19:22.847979+08:00] sql.INFO: [3.86] select `ad_place`.*, `ad`.* from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 00:00:00' and '2025-02-21 23:59:59' and `ad`.`totime` >= '2025-02-21 10:19:22' [] []
-[2025-02-21T10:19:27.982188+08:00] sql.INFO: [17.81] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:20:39.279410+08:00] sql.INFO: [14.61] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:20:40.782936+08:00] sql.INFO: [3] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:21:52.011071+08:00] sql.INFO: [21.89] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:21:52.316741+08:00] sql.INFO: [15.53] select * from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 10:21:52' and 'ad.totime' [] []
-[2025-02-21T10:22:07.576719+08:00] sql.INFO: [16.43] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:22:07.834211+08:00] sql.INFO: [4.35] select * from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') [] []
-[2025-02-21T10:28:23.230931+08:00] sql.INFO: [17.03] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:28:23.536194+08:00] sql.INFO: [13.41] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 10:28:23' and 'ad.totime' [] []
-[2025-02-21T10:30:06.760494+08:00] sql.INFO: [17.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:30:07.049720+08:00] sql.INFO: [3.93] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 10:30:07' and 'ad.totime' [] []
-[2025-02-21T10:33:30.279651+08:00] sql.INFO: [14.63] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:34:29.956956+08:00] sql.INFO: [15.72] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:34:42.119149+08:00] sql.INFO: [16.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:34:44.456769+08:00] sql.INFO: [3.85] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:34:53.445686+08:00] sql.INFO: [15.69] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:36:21.540183+08:00] sql.INFO: [9.66] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:36:22.434920+08:00] sql.INFO: [3.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:36:23.800094+08:00] sql.INFO: [3.43] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:36:24.994608+08:00] sql.INFO: [3.51] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:36:59.060699+08:00] sql.INFO: [16.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:36:59.402056+08:00] sql.INFO: [71.2] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 10:36:59' and 'ad.totime' [] []
-[2025-02-21T10:37:00.872287+08:00] sql.INFO: [3.96] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:37:00.879907+08:00] sql.INFO: [4.27] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 10:37:00' and 'ad.totime' [] []
-[2025-02-21T10:38:07.092717+08:00] sql.INFO: [9.87] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:38:07.100316+08:00] sql.INFO: [4.23] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` between '2025-02-21 10:38:07' and 'ad.totime' [] []
-[2025-02-21T10:38:11.802166+08:00] sql.INFO: [17.02] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:38:25.431987+08:00] sql.INFO: [14.76] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:38:27.150068+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:38:32.224891+08:00] sql.INFO: [3.6] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:38:36.249302+08:00] sql.INFO: [17.09] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:40:21.416605+08:00] sql.INFO: [8.53] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:40:26.549762+08:00] sql.INFO: [18.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:40:26.868184+08:00] sql.INFO: [4.28] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` <= '2025-02-21 10:40:26' and `ad`.`totime` >= '2025-02-21 10:40:26' [] []
-[2025-02-21T10:41:28.683738+08:00] sql.INFO: [15.47] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:41:28.935661+08:00] sql.INFO: [4.71] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` <= '2025-02-21 10:41:28' and `ad`.`totime` >= '2025-02-21 10:41:28' [] []
-[2025-02-21T10:41:32.536745+08:00] sql.INFO: [3.62] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:41:32.544747+08:00] sql.INFO: [4.81] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` <= '2025-02-21 10:41:32' and `ad`.`totime` >= '2025-02-21 10:41:32' [] []
-[2025-02-21T10:41:44.367604+08:00] sql.INFO: [13.69] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T10:41:44.662323+08:00] sql.INFO: [4.02] select `ad_place`.*, `ad`.*, `ad`.`name` as `ad_name`, `ad`.`id` as `ad_id` from `ad_place` left join `ad` on `ad`.`pid` = `ad_place`.`id` where (`website_id` = '2' and `ad_place`.`status` = '1' and `ad`.`status` = '1' and `ad_tag` like '%INDEDX%') and `ad`.`fromtime` <= '2025-02-21 10:41:44' and `ad`.`totime` >= '2025-02-21 10:41:44' [] []
-[2025-02-21T15:10:06.371578+08:00] sql.INFO: [16.3] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:10:21.951998+08:00] sql.INFO: [3.14] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:10:25.441420+08:00] sql.INFO: [3.44] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:10:28.666925+08:00] sql.INFO: [3.35] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:11:47.360249+08:00] sql.INFO: [8.32] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:11:48.608589+08:00] sql.INFO: [3.64] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:11:55.596087+08:00] sql.INFO: [3.32] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:12:09.945987+08:00] sql.INFO: [3.55] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:12:10.959611+08:00] sql.INFO: [3.57] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:12:11.822891+08:00] sql.INFO: [3.77] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:12:12.726991+08:00] sql.INFO: [4.37] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:25:34.884078+08:00] sql.INFO: [8.3] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:42:20.285735+08:00] sql.INFO: [8.29] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:42:23.743539+08:00] sql.INFO: [3.64] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:44:26.829091+08:00] sql.INFO: [9.49] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:45:47.627132+08:00] sql.INFO: [8.17] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:45:49.039286+08:00] sql.INFO: [3.43] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:48:23.223463+08:00] sql.INFO: [10.03] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:48:24.223103+08:00] sql.INFO: [3.32] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:48:25.118130+08:00] sql.INFO: [3.69] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:48:25.849561+08:00] sql.INFO: [3.66] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:49:03.854099+08:00] sql.INFO: [3.5] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:49:04.784747+08:00] sql.INFO: [3.32] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:49:16.604183+08:00] sql.INFO: [3.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:49:18.189157+08:00] sql.INFO: [3.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:49:18.911853+08:00] sql.INFO: [3.48] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:15.301768+08:00] sql.INFO: [4.52] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:16.155563+08:00] sql.INFO: [3.22] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:17.450610+08:00] sql.INFO: [3.39] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:18.251521+08:00] sql.INFO: [4.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:19.035947+08:00] sql.INFO: [3.09] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:19.894361+08:00] sql.INFO: [3.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:20.800381+08:00] sql.INFO: [4.06] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:50:22.405230+08:00] sql.INFO: [3.28] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:02.967245+08:00] sql.INFO: [9.06] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:03.961426+08:00] sql.INFO: [3.9] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:06.244147+08:00] sql.INFO: [3.55] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:07.145606+08:00] sql.INFO: [3.68] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:26.303977+08:00] sql.INFO: [3.2] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:27.196700+08:00] sql.INFO: [3.4] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:28.042939+08:00] sql.INFO: [4.15] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:28.728226+08:00] sql.INFO: [3.2] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:29.951565+08:00] sql.INFO: [3.22] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:30.798061+08:00] sql.INFO: [3.71] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:31.603415+08:00] sql.INFO: [3.11] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:49.477306+08:00] sql.INFO: [3.51] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:50.540509+08:00] sql.INFO: [4.19] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:51.300842+08:00] sql.INFO: [3.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:52.067204+08:00] sql.INFO: [3.46] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:56:52.929568+08:00] sql.INFO: [4.03] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:57:28.293583+08:00] sql.INFO: [3.73] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:57:30.157644+08:00] sql.INFO: [3.23] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:57:30.921777+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:57:54.608804+08:00] sql.INFO: [3.28] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:08.221481+08:00] sql.INFO: [3.29] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:17.839520+08:00] sql.INFO: [4.11] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:18.686177+08:00] sql.INFO: [3.27] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:19.716447+08:00] sql.INFO: [3.62] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:20.399720+08:00] sql.INFO: [3.82] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:21.091890+08:00] sql.INFO: [3.33] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:21.883015+08:00] sql.INFO: [3.38] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:22.717469+08:00] sql.INFO: [3.93] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:41.875002+08:00] sql.INFO: [3.51] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:42.922856+08:00] sql.INFO: [6.7] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:43.711113+08:00] sql.INFO: [7.23] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:58:44.510499+08:00] sql.INFO: [4.11] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:59:23.170705+08:00] sql.INFO: [3.39] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:59:23.959841+08:00] sql.INFO: [4.02] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:59:24.733198+08:00] sql.INFO: [3.16] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:59:25.525776+08:00] sql.INFO: [4.3] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T15:59:26.349080+08:00] sql.INFO: [3.74] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T16:00:22.301592+08:00] sql.INFO: [5.5] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T16:00:23.285935+08:00] sql.INFO: [3.3] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []
-[2025-02-21T16:00:24.041032+08:00] sql.INFO: [8.76] select * from `website` where json_contains(`website_url`, '"localhost:3000"') limit 1 [] []

+ 60 - 16
vendor/composer/autoload_classmap.php

@@ -49,17 +49,25 @@ return array(
     'App\\Model\\Article' => $baseDir . '/app/Model/Article.php',
     'App\\Model\\ArticleData' => $baseDir . '/app/Model/ArticleData.php',
     'App\\Model\\BlackWord' => $baseDir . '/app/Model/BlackWord.php',
+    'App\\Model\\Book' => $baseDir . '/app/Model/Book.php',
     'App\\Model\\Category' => $baseDir . '/app/Model/Category.php',
+    'App\\Model\\Complaint' => $baseDir . '/app/Model/Complaint.php',
     'App\\Model\\Component' => $baseDir . '/app/Model/Component.php',
     'App\\Model\\Department' => $baseDir . '/app/Model/Department.php',
     'App\\Model\\District' => $baseDir . '/app/Model/District.php',
     'App\\Model\\FooterCategory' => $baseDir . '/app/Model/FooterCategory.php',
     'App\\Model\\FooterContent' => $baseDir . '/app/Model/FooterContent.php',
+    'App\\Model\\Good' => $baseDir . '/app/Model/Good.php',
+    'App\\Model\\JobHunting' => $baseDir . '/app/Model/JobHunting.php',
+    'App\\Model\\JobRecruiting' => $baseDir . '/app/Model/JobRecruiting.php',
     'App\\Model\\LetterOfComplaint' => $baseDir . '/app/Model/LetterOfComplaint.php',
     'App\\Model\\LetterType' => $baseDir . '/app/Model/LetterType.php',
     'App\\Model\\Link' => $baseDir . '/app/Model/Link.php',
     'App\\Model\\Model' => $baseDir . '/app/Model/Model.php',
+    'App\\Model\\Notice' => $baseDir . '/app/Model/Notice.php',
+    'App\\Model\\Order' => $baseDir . '/app/Model/Order.php',
     'App\\Model\\Sector' => $baseDir . '/app/Model/Sector.php',
+    'App\\Model\\Size' => $baseDir . '/app/Model/Size.php',
     'App\\Model\\Template' => $baseDir . '/app/Model/Template.php',
     'App\\Model\\TemplateClass' => $baseDir . '/app/Model/TemplateClass.php',
     'App\\Model\\User' => $baseDir . '/app/Model/User.php',
@@ -68,10 +76,12 @@ return array(
     'App\\Model\\WebsiteCategory' => $baseDir . '/app/Model/WebsiteCategory.php',
     'App\\Model\\WebsiteColumn' => $baseDir . '/app/Model/WebsiteColumn.php',
     'App\\Model\\WebsiteGroup' => $baseDir . '/app/Model/WebsiteGroup.php',
+    'App\\Model\\WebsiteImg' => $baseDir . '/app/Model/WebsiteImg.php',
     'App\\Model\\WebsiteRole' => $baseDir . '/app/Model/WebsiteRole.php',
     'App\\Model\\WebsiteRoleUser' => $baseDir . '/app/Model/WebsiteRoleUser.php',
     'App\\Model\\WebsiteTemplate' => $baseDir . '/app/Model/WebsiteTemplate.php',
     'App\\Model\\WebsiteTemplateInfo' => $baseDir . '/app/Model/WebsiteTemplateInfo.php',
+    'App\\Model\\WhiteRouter' => $baseDir . '/app/Model/WhiteRouter.php',
     'App\\Service\\MinioService' => $baseDir . '/app/Service/MinioService.php',
     'App\\Tools\\Result' => $baseDir . '/app/Tools/Result.php',
     'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
@@ -643,10 +653,6 @@ return array(
     'Aws\\InternetMonitor\\InternetMonitorClient' => $vendorDir . '/aws/aws-sdk-php/src/InternetMonitor/InternetMonitorClient.php',
     'Aws\\Invoicing\\Exception\\InvoicingException' => $vendorDir . '/aws/aws-sdk-php/src/Invoicing/Exception/InvoicingException.php',
     'Aws\\Invoicing\\InvoicingClient' => $vendorDir . '/aws/aws-sdk-php/src/Invoicing/InvoicingClient.php',
-    'Aws\\IoT1ClickDevicesService\\Exception\\IoT1ClickDevicesServiceException' => $vendorDir . '/aws/aws-sdk-php/src/IoT1ClickDevicesService/Exception/IoT1ClickDevicesServiceException.php',
-    'Aws\\IoT1ClickDevicesService\\IoT1ClickDevicesServiceClient' => $vendorDir . '/aws/aws-sdk-php/src/IoT1ClickDevicesService/IoT1ClickDevicesServiceClient.php',
-    'Aws\\IoT1ClickProjects\\Exception\\IoT1ClickProjectsException' => $vendorDir . '/aws/aws-sdk-php/src/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php',
-    'Aws\\IoT1ClickProjects\\IoT1ClickProjectsClient' => $vendorDir . '/aws/aws-sdk-php/src/IoT1ClickProjects/IoT1ClickProjectsClient.php',
     'Aws\\IoTAnalytics\\Exception\\IoTAnalyticsException' => $vendorDir . '/aws/aws-sdk-php/src/IoTAnalytics/Exception/IoTAnalyticsException.php',
     'Aws\\IoTAnalytics\\IoTAnalyticsClient' => $vendorDir . '/aws/aws-sdk-php/src/IoTAnalytics/IoTAnalyticsClient.php',
     'Aws\\IoTDeviceAdvisor\\Exception\\IoTDeviceAdvisorException' => $vendorDir . '/aws/aws-sdk-php/src/IoTDeviceAdvisor/Exception/IoTDeviceAdvisorException.php',
@@ -1292,6 +1298,12 @@ return array(
     'Composer\\Pcre\\MatchResult' => $vendorDir . '/composer/pcre/src/MatchResult.php',
     'Composer\\Pcre\\MatchStrictGroupsResult' => $vendorDir . '/composer/pcre/src/MatchStrictGroupsResult.php',
     'Composer\\Pcre\\MatchWithOffsetsResult' => $vendorDir . '/composer/pcre/src/MatchWithOffsetsResult.php',
+    'Composer\\Pcre\\PHPStan\\InvalidRegexPatternRule' => $vendorDir . '/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php',
+    'Composer\\Pcre\\PHPStan\\PregMatchFlags' => $vendorDir . '/composer/pcre/src/PHPStan/PregMatchFlags.php',
+    'Composer\\Pcre\\PHPStan\\PregMatchParameterOutTypeExtension' => $vendorDir . '/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php',
+    'Composer\\Pcre\\PHPStan\\PregMatchTypeSpecifyingExtension' => $vendorDir . '/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php',
+    'Composer\\Pcre\\PHPStan\\PregReplaceCallbackClosureTypeExtension' => $vendorDir . '/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php',
+    'Composer\\Pcre\\PHPStan\\UnsafeStrictGroupsCallRule' => $vendorDir . '/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php',
     'Composer\\Pcre\\PcreException' => $vendorDir . '/composer/pcre/src/PcreException.php',
     'Composer\\Pcre\\Preg' => $vendorDir . '/composer/pcre/src/Preg.php',
     'Composer\\Pcre\\Regex' => $vendorDir . '/composer/pcre/src/Regex.php',
@@ -1340,6 +1352,7 @@ return array(
     'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php',
     'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php',
     'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php',
+    'DeepCopy\\TypeFilter\\Date\\DatePeriodFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DatePeriodFilter.php',
     'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php',
     'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php',
     'DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php',
@@ -1727,6 +1740,7 @@ return array(
     'Hyperf\\Command\\Concerns\\HasParameters' => $vendorDir . '/hyperf/command/src/Concerns/HasParameters.php',
     'Hyperf\\Command\\Concerns\\InteractsWithIO' => $vendorDir . '/hyperf/command/src/Concerns/InteractsWithIO.php',
     'Hyperf\\Command\\Concerns\\NullDisableEventDispatcher' => $vendorDir . '/hyperf/command/src/Concerns/NullDisableEventDispatcher.php',
+    'Hyperf\\Command\\Concerns\\Prohibitable' => $vendorDir . '/hyperf/command/src/Concerns/Prohibitable.php',
     'Hyperf\\Command\\ConfigProvider' => $vendorDir . '/hyperf/command/src/ConfigProvider.php',
     'Hyperf\\Command\\Console' => $vendorDir . '/hyperf/command/src/Console.php',
     'Hyperf\\Command\\Event\\AfterExecute' => $vendorDir . '/hyperf/command/src/Event/AfterExecute.php',
@@ -1803,6 +1817,7 @@ return array(
     'Hyperf\\Context\\Traits\\CoroutineProxy' => $vendorDir . '/hyperf/context/src/Traits/CoroutineProxy.php',
     'Hyperf\\Contract\\ApplicationInterface' => $vendorDir . '/hyperf/contract/src/ApplicationInterface.php',
     'Hyperf\\Contract\\Arrayable' => $vendorDir . '/hyperf/contract/src/Arrayable.php',
+    'Hyperf\\Contract\\CanBeEscapedWhenCastToString' => $vendorDir . '/hyperf/contract/src/CanBeEscapedWhenCastToString.php',
     'Hyperf\\Contract\\Castable' => $vendorDir . '/hyperf/contract/src/Castable.php',
     'Hyperf\\Contract\\CastsAttributes' => $vendorDir . '/hyperf/contract/src/CastsAttributes.php',
     'Hyperf\\Contract\\CastsInboundAttributes' => $vendorDir . '/hyperf/contract/src/CastsInboundAttributes.php',
@@ -1859,7 +1874,9 @@ return array(
     'Hyperf\\Coroutine\\Exception\\TimeoutException' => $vendorDir . '/hyperf/coroutine/src/Exception/TimeoutException.php',
     'Hyperf\\Coroutine\\Exception\\WaitTimeoutException' => $vendorDir . '/hyperf/coroutine/src/Exception/WaitTimeoutException.php',
     'Hyperf\\Coroutine\\Locker' => $vendorDir . '/hyperf/coroutine/src/Locker.php',
+    'Hyperf\\Coroutine\\Mutex' => $vendorDir . '/hyperf/coroutine/src/Mutex.php',
     'Hyperf\\Coroutine\\Parallel' => $vendorDir . '/hyperf/coroutine/src/Parallel.php',
+    'Hyperf\\Coroutine\\WaitConcurrent' => $vendorDir . '/hyperf/coroutine/src/WaitConcurrent.php',
     'Hyperf\\Coroutine\\WaitGroup' => $vendorDir . '/hyperf/coroutine/src/WaitGroup.php',
     'Hyperf\\Coroutine\\Waiter' => $vendorDir . '/hyperf/coroutine/src/Waiter.php',
     'Hyperf\\Database\\Commands\\Annotations\\RewriteReturnType' => $vendorDir . '/hyperf/database/src/Commands/Annotations/RewriteReturnType.php',
@@ -1911,10 +1928,15 @@ return array(
     'Hyperf\\Database\\Events\\TransactionBeginning' => $vendorDir . '/hyperf/database/src/Events/TransactionBeginning.php',
     'Hyperf\\Database\\Events\\TransactionCommitted' => $vendorDir . '/hyperf/database/src/Events/TransactionCommitted.php',
     'Hyperf\\Database\\Events\\TransactionRolledBack' => $vendorDir . '/hyperf/database/src/Events/TransactionRolledBack.php',
+    'Hyperf\\Database\\Exception\\ClassMorphViolationException' => $vendorDir . '/hyperf/database/src/Exception/ClassMorphViolationException.php',
     'Hyperf\\Database\\Exception\\InvalidArgumentException' => $vendorDir . '/hyperf/database/src/Exception/InvalidArgumentException.php',
     'Hyperf\\Database\\Exception\\InvalidBindingException' => $vendorDir . '/hyperf/database/src/Exception/InvalidBindingException.php',
     'Hyperf\\Database\\Exception\\InvalidCastException' => $vendorDir . '/hyperf/database/src/Exception/InvalidCastException.php',
+    'Hyperf\\Database\\Exception\\MultipleColumnsSelectedException' => $vendorDir . '/hyperf/database/src/Exception/MultipleColumnsSelectedException.php',
+    'Hyperf\\Database\\Exception\\MultipleRecordsFoundException' => $vendorDir . '/hyperf/database/src/Exception/MultipleRecordsFoundException.php',
     'Hyperf\\Database\\Exception\\QueryException' => $vendorDir . '/hyperf/database/src/Exception/QueryException.php',
+    'Hyperf\\Database\\Exception\\RecordsNotFoundException' => $vendorDir . '/hyperf/database/src/Exception/RecordsNotFoundException.php',
+    'Hyperf\\Database\\Exception\\UniqueConstraintViolationException' => $vendorDir . '/hyperf/database/src/Exception/UniqueConstraintViolationException.php',
     'Hyperf\\Database\\Grammar' => $vendorDir . '/hyperf/database/src/Grammar.php',
     'Hyperf\\Database\\Migrations\\DatabaseMigrationRepository' => $vendorDir . '/hyperf/database/src/Migrations/DatabaseMigrationRepository.php',
     'Hyperf\\Database\\Migrations\\Migration' => $vendorDir . '/hyperf/database/src/Migrations/Migration.php',
@@ -2154,10 +2176,12 @@ return array(
     'Hyperf\\Dispatcher\\Exceptions\\InvalidArgumentException' => $vendorDir . '/hyperf/dispatcher/src/Exceptions/InvalidArgumentException.php',
     'Hyperf\\Dispatcher\\HttpDispatcher' => $vendorDir . '/hyperf/dispatcher/src/HttpDispatcher.php',
     'Hyperf\\Dispatcher\\HttpRequestHandler' => $vendorDir . '/hyperf/dispatcher/src/HttpRequestHandler.php',
+    'Hyperf\\Engine\\Barrier' => $vendorDir . '/hyperf/engine/src/Barrier.php',
     'Hyperf\\Engine\\Channel' => $vendorDir . '/hyperf/engine/src/Channel.php',
     'Hyperf\\Engine\\ConfigProvider' => $vendorDir . '/hyperf/engine/src/ConfigProvider.php',
     'Hyperf\\Engine\\Constant' => $vendorDir . '/hyperf/engine/src/Constant.php',
     'Hyperf\\Engine\\Constant\\SocketType' => $vendorDir . '/hyperf/engine/src/Constant/SocketType.php',
+    'Hyperf\\Engine\\Contract\\BarrierInterface' => $vendorDir . '/hyperf/engine-contract/src/BarrierInterface.php',
     'Hyperf\\Engine\\Contract\\ChannelInterface' => $vendorDir . '/hyperf/engine-contract/src/ChannelInterface.php',
     'Hyperf\\Engine\\Contract\\CoroutineInterface' => $vendorDir . '/hyperf/engine-contract/src/CoroutineInterface.php',
     'Hyperf\\Engine\\Contract\\DefaultOptionInterface' => $vendorDir . '/hyperf/engine-contract/src/DefaultOptionInterface.php',
@@ -2272,6 +2296,7 @@ return array(
     'Hyperf\\Framework\\Event\\OnWorkerStop' => $vendorDir . '/hyperf/framework/src/Event/OnWorkerStop.php',
     'Hyperf\\Framework\\Event\\OtherWorkerStart' => $vendorDir . '/hyperf/framework/src/Event/OtherWorkerStart.php',
     'Hyperf\\Framework\\Exception\\NotImplementedException' => $vendorDir . '/hyperf/framework/src/Exception/NotImplementedException.php',
+    'Hyperf\\Framework\\Logger\\ConsoleLogger' => $vendorDir . '/hyperf/framework/src/Logger/ConsoleLogger.php',
     'Hyperf\\Framework\\Logger\\StdoutLogger' => $vendorDir . '/hyperf/framework/src/Logger/StdoutLogger.php',
     'Hyperf\\Framework\\SymfonyEventDispatcher' => $vendorDir . '/hyperf/framework/src/SymfonyEventDispatcher.php',
     'Hyperf\\Guzzle\\ClientFactory' => $vendorDir . '/hyperf/guzzle/src/ClientFactory.php',
@@ -2509,6 +2534,7 @@ return array(
     'Hyperf\\Process\\ProcessCollector' => $vendorDir . '/hyperf/process/src/ProcessCollector.php',
     'Hyperf\\Process\\ProcessManager' => $vendorDir . '/hyperf/process/src/ProcessManager.php',
     'Hyperf\\Redis\\ConfigProvider' => $vendorDir . '/hyperf/redis/src/ConfigProvider.php',
+    'Hyperf\\Redis\\Event\\CommandExecuted' => $vendorDir . '/hyperf/redis/src/Event/CommandExecuted.php',
     'Hyperf\\Redis\\Exception\\InvalidRedisConnectionException' => $vendorDir . '/hyperf/redis/src/Exception/InvalidRedisConnectionException.php',
     'Hyperf\\Redis\\Exception\\InvalidRedisOptionException' => $vendorDir . '/hyperf/redis/src/Exception/InvalidRedisOptionException.php',
     'Hyperf\\Redis\\Exception\\InvalidRedisProxyException' => $vendorDir . '/hyperf/redis/src/Exception/InvalidRedisProxyException.php',
@@ -2626,6 +2652,7 @@ return array(
     'Hyperf\\Support\\Backoff\\ArrayBackoff' => $vendorDir . '/hyperf/support/src/Backoff/ArrayBackoff.php',
     'Hyperf\\Support\\ClearStatCache' => $vendorDir . '/hyperf/support/src/ClearStatCache.php',
     'Hyperf\\Support\\Composer' => $vendorDir . '/hyperf/support/src/Composer.php',
+    'Hyperf\\Support\\DotenvManager' => $vendorDir . '/hyperf/support/src/DotenvManager.php',
     'Hyperf\\Support\\Exception\\ExceptionThrower' => $vendorDir . '/hyperf/support/src/Exception/ExceptionThrower.php',
     'Hyperf\\Support\\Exception\\IPReadFailedException' => $vendorDir . '/hyperf/support/src/Exception/IPReadFailedException.php',
     'Hyperf\\Support\\Exception\\InvalidArgumentException' => $vendorDir . '/hyperf/support/src/Exception/InvalidArgumentException.php',
@@ -3114,6 +3141,7 @@ return array(
     'Monolog\\Handler\\WebRequestRecognizerTrait' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php',
     'Monolog\\Handler\\WhatFailureGroupHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',
     'Monolog\\Handler\\ZendMonitorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',
+    'Monolog\\JsonSerializableDateTimeImmutable' => $vendorDir . '/monolog/monolog/src/Monolog/JsonSerializableDateTimeImmutable.php',
     'Monolog\\Level' => $vendorDir . '/monolog/monolog/src/Monolog/Level.php',
     'Monolog\\LogRecord' => $vendorDir . '/monolog/monolog/src/Monolog/LogRecord.php',
     'Monolog\\Logger' => $vendorDir . '/monolog/monolog/src/Monolog/Logger.php',
@@ -3135,10 +3163,12 @@ return array(
     'Monolog\\Registry' => $vendorDir . '/monolog/monolog/src/Monolog/Registry.php',
     'Monolog\\ResettableInterface' => $vendorDir . '/monolog/monolog/src/Monolog/ResettableInterface.php',
     'Monolog\\SignalHandler' => $vendorDir . '/monolog/monolog/src/Monolog/SignalHandler.php',
+    'Monolog\\Test\\MonologTestCase' => $vendorDir . '/monolog/monolog/src/Monolog/Test/MonologTestCase.php',
     'Monolog\\Test\\TestCase' => $vendorDir . '/monolog/monolog/src/Monolog/Test/TestCase.php',
     'Monolog\\Utils' => $vendorDir . '/monolog/monolog/src/Monolog/Utils.php',
     'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
     'Override' => $vendorDir . '/symfony/polyfill-php83/Resources/stubs/Override.php',
+    'Overtrue\\ChineseCalendar\\Calendar' => $vendorDir . '/overtrue/chinese-calendar/src/Calendar.php',
     'Overtrue\\Pinyin\\Collection' => $vendorDir . '/overtrue/pinyin/src/Collection.php',
     'Overtrue\\Pinyin\\Converter' => $vendorDir . '/overtrue/pinyin/src/Converter.php',
     'Overtrue\\Pinyin\\Pinyin' => $vendorDir . '/overtrue/pinyin/src/Pinyin.php',
@@ -3257,10 +3287,14 @@ return array(
     'PHPUnit\\Event\\TestSuite\\TestSuiteWithName' => $vendorDir . '/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteWithName.php',
     'PHPUnit\\Event\\Test\\AfterLastTestMethodCalled' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalled.php',
     'PHPUnit\\Event\\Test\\AfterLastTestMethodCalledSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalledSubscriber.php',
+    'PHPUnit\\Event\\Test\\AfterLastTestMethodErrored' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErrored.php',
+    'PHPUnit\\Event\\Test\\AfterLastTestMethodErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErroredSubscriber.php',
     'PHPUnit\\Event\\Test\\AfterLastTestMethodFinished' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinished.php',
     'PHPUnit\\Event\\Test\\AfterLastTestMethodFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinishedSubscriber.php',
     'PHPUnit\\Event\\Test\\AfterTestMethodCalled' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalled.php',
     'PHPUnit\\Event\\Test\\AfterTestMethodCalledSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalledSubscriber.php',
+    'PHPUnit\\Event\\Test\\AfterTestMethodErrored' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErrored.php',
+    'PHPUnit\\Event\\Test\\AfterTestMethodErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErroredSubscriber.php',
     'PHPUnit\\Event\\Test\\AfterTestMethodFinished' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinished.php',
     'PHPUnit\\Event\\Test\\AfterTestMethodFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinishedSubscriber.php',
     'PHPUnit\\Event\\Test\\AssertionFailed' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/Assertion/AssertionFailed.php',
@@ -3275,6 +3309,8 @@ return array(
     'PHPUnit\\Event\\Test\\BeforeFirstTestMethodFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinishedSubscriber.php',
     'PHPUnit\\Event\\Test\\BeforeTestMethodCalled' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalled.php',
     'PHPUnit\\Event\\Test\\BeforeTestMethodCalledSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalledSubscriber.php',
+    'PHPUnit\\Event\\Test\\BeforeTestMethodErrored' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErrored.php',
+    'PHPUnit\\Event\\Test\\BeforeTestMethodErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErroredSubscriber.php',
     'PHPUnit\\Event\\Test\\BeforeTestMethodFinished' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinished.php',
     'PHPUnit\\Event\\Test\\BeforeTestMethodFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinishedSubscriber.php',
     'PHPUnit\\Event\\Test\\ComparatorRegistered' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/ComparatorRegistered.php',
@@ -3328,10 +3364,14 @@ return array(
     'PHPUnit\\Event\\Test\\PhpunitWarningTriggeredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggeredSubscriber.php',
     'PHPUnit\\Event\\Test\\PostConditionCalled' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalled.php',
     'PHPUnit\\Event\\Test\\PostConditionCalledSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalledSubscriber.php',
+    'PHPUnit\\Event\\Test\\PostConditionErrored' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErrored.php',
+    'PHPUnit\\Event\\Test\\PostConditionErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErroredSubscriber.php',
     'PHPUnit\\Event\\Test\\PostConditionFinished' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinished.php',
     'PHPUnit\\Event\\Test\\PostConditionFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinishedSubscriber.php',
     'PHPUnit\\Event\\Test\\PreConditionCalled' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalled.php',
     'PHPUnit\\Event\\Test\\PreConditionCalledSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalledSubscriber.php',
+    'PHPUnit\\Event\\Test\\PreConditionErrored' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErrored.php',
+    'PHPUnit\\Event\\Test\\PreConditionErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErroredSubscriber.php',
     'PHPUnit\\Event\\Test\\PreConditionFinished' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinished.php',
     'PHPUnit\\Event\\Test\\PreConditionFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinishedSubscriber.php',
     'PHPUnit\\Event\\Test\\PreparationFailed' => $vendorDir . '/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailed.php',
@@ -3493,12 +3533,11 @@ return array(
     'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/MethodNameMatch.php',
     'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/ParametersMatch.php',
     'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/Stub.php',
-    'PHPUnit\\Framework\\MockObject\\CannotUseAddMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php',
     'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php',
     'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php',
     'PHPUnit\\Framework\\MockObject\\DoubledCloneMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/DoubledCloneMethod.php',
     'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php',
-    'PHPUnit\\Framework\\MockObject\\Generator\\ClassAlreadyExistsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassAlreadyExistsException.php',
+    'PHPUnit\\Framework\\MockObject\\Generator\\CannotUseAddMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/CannotUseAddMethodsException.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\ClassIsEnumerationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsEnumerationException.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\ClassIsFinalException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsFinalException.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\ClassIsReadonlyException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsReadonlyException.php',
@@ -3511,6 +3550,7 @@ return array(
     'PHPUnit\\Framework\\MockObject\\Generator\\MockMethodSet' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/MockMethodSet.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\MockTrait' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/MockTrait.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\MockType' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/MockType.php',
+    'PHPUnit\\Framework\\MockObject\\Generator\\NameAlreadyInUseException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/NameAlreadyInUseException.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\OriginalConstructorInvocationRequiredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/OriginalConstructorInvocationRequiredException.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ReflectionException.php',
     'PHPUnit\\Framework\\MockObject\\Generator\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/RuntimeException.php',
@@ -3536,8 +3576,8 @@ return array(
     'PHPUnit\\Framework\\MockObject\\MockObjectApi' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MockObjectApi.php',
     'PHPUnit\\Framework\\MockObject\\MockObjectInternal' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObjectInternal.php',
     'PHPUnit\\Framework\\MockObject\\NeverReturningMethodException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/NeverReturningMethodException.php',
+    'PHPUnit\\Framework\\MockObject\\NoMoreReturnValuesConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/NoMoreReturnValuesConfiguredException.php',
     'PHPUnit\\Framework\\MockObject\\ProxiedCloneMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/ProxiedCloneMethod.php',
-    'PHPUnit\\Framework\\MockObject\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php',
     'PHPUnit\\Framework\\MockObject\\ReturnValueGenerator' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/ReturnValueGenerator.php',
     'PHPUnit\\Framework\\MockObject\\ReturnValueNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php',
     'PHPUnit\\Framework\\MockObject\\Rule\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyInvokedCount.php',
@@ -3598,7 +3638,6 @@ return array(
     'PHPUnit\\Framework\\UnknownClassOrInterfaceException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/UnknownClassOrInterfaceException.php',
     'PHPUnit\\Framework\\UnknownTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/UnknownTypeException.php',
     'PHPUnit\\Logging\\EventLogger' => $vendorDir . '/phpunit/phpunit/src/Logging/EventLogger.php',
-    'PHPUnit\\Logging\\Exception' => $vendorDir . '/phpunit/phpunit/src/Logging/Exception.php',
     'PHPUnit\\Logging\\JUnit\\JunitXmlLogger' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/JunitXmlLogger.php',
     'PHPUnit\\Logging\\JUnit\\Subscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/Subscriber.php',
     'PHPUnit\\Logging\\JUnit\\TestErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestErroredSubscriber.php',
@@ -3608,6 +3647,7 @@ return array(
     'PHPUnit\\Logging\\JUnit\\TestPreparationFailedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationFailedSubscriber.php',
     'PHPUnit\\Logging\\JUnit\\TestPreparationStartedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationStartedSubscriber.php',
     'PHPUnit\\Logging\\JUnit\\TestPreparedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparedSubscriber.php',
+    'PHPUnit\\Logging\\JUnit\\TestPrintedUnexpectedOutputSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPrintedUnexpectedOutputSubscriber.php',
     'PHPUnit\\Logging\\JUnit\\TestRunnerExecutionFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestRunnerExecutionFinishedSubscriber.php',
     'PHPUnit\\Logging\\JUnit\\TestSkippedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSkippedSubscriber.php',
     'PHPUnit\\Logging\\JUnit\\TestSuiteFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSuiteFinishedSubscriber.php',
@@ -3622,7 +3662,9 @@ return array(
     'PHPUnit\\Logging\\TeamCity\\TestPreparedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestPreparedSubscriber.php',
     'PHPUnit\\Logging\\TeamCity\\TestRunnerExecutionFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestRunnerExecutionFinishedSubscriber.php',
     'PHPUnit\\Logging\\TeamCity\\TestSkippedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSkippedSubscriber.php',
+    'PHPUnit\\Logging\\TeamCity\\TestSuiteBeforeFirstTestMethodErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteBeforeFirstTestMethodErroredSubscriber.php',
     'PHPUnit\\Logging\\TeamCity\\TestSuiteFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteFinishedSubscriber.php',
+    'PHPUnit\\Logging\\TeamCity\\TestSuiteSkippedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteSkippedSubscriber.php',
     'PHPUnit\\Logging\\TeamCity\\TestSuiteStartedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteStartedSubscriber.php',
     'PHPUnit\\Logging\\TestDox\\HtmlRenderer' => $vendorDir . '/phpunit/phpunit/src/Logging/TestDox/HtmlRenderer.php',
     'PHPUnit\\Logging\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Logging/TestDox/NamePrettifier.php',
@@ -3681,6 +3723,7 @@ return array(
     'PHPUnit\\Metadata\\IgnoreDeprecations' => $vendorDir . '/phpunit/phpunit/src/Metadata/IgnoreDeprecations.php',
     'PHPUnit\\Metadata\\IgnoreFunctionForCodeCoverage' => $vendorDir . '/phpunit/phpunit/src/Metadata/IgnoreFunctionForCodeCoverage.php',
     'PHPUnit\\Metadata\\IgnoreMethodForCodeCoverage' => $vendorDir . '/phpunit/phpunit/src/Metadata/IgnoreMethodForCodeCoverage.php',
+    'PHPUnit\\Metadata\\InvalidAttributeException' => $vendorDir . '/phpunit/phpunit/src/Metadata/Exception/InvalidAttributeException.php',
     'PHPUnit\\Metadata\\InvalidVersionRequirementException' => $vendorDir . '/phpunit/phpunit/src/Metadata/Exception/InvalidVersionRequirementException.php',
     'PHPUnit\\Metadata\\Metadata' => $vendorDir . '/phpunit/phpunit/src/Metadata/Metadata.php',
     'PHPUnit\\Metadata\\MetadataCollection' => $vendorDir . '/phpunit/phpunit/src/Metadata/MetadataCollection.php',
@@ -3737,7 +3780,7 @@ return array(
     'PHPUnit\\Runner\\ClassDoesNotExtendTestCaseException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/ClassDoesNotExtendTestCaseException.php',
     'PHPUnit\\Runner\\ClassIsAbstractException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/ClassIsAbstractException.php',
     'PHPUnit\\Runner\\CodeCoverage' => $vendorDir . '/phpunit/phpunit/src/Runner/CodeCoverage.php',
-    'PHPUnit\\Runner\\DirectoryCannotBeCreatedException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/DirectoryCannotBeCreatedException.php',
+    'PHPUnit\\Runner\\DirectoryDoesNotExistException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/DirectoryDoesNotExistException.php',
     'PHPUnit\\Runner\\ErrorException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/ErrorException.php',
     'PHPUnit\\Runner\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Runner/ErrorHandler.php',
     'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/Exception.php',
@@ -3760,11 +3803,9 @@ return array(
     'PHPUnit\\Runner\\GarbageCollection\\TestFinishedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/TestFinishedSubscriber.php',
     'PHPUnit\\Runner\\InvalidOrderException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/InvalidOrderException.php',
     'PHPUnit\\Runner\\InvalidPhptFileException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/InvalidPhptFileException.php',
-    'PHPUnit\\Runner\\NoIgnoredEventException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/NoIgnoredEventException.php',
     'PHPUnit\\Runner\\ParameterDoesNotExistException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/ParameterDoesNotExistException.php',
     'PHPUnit\\Runner\\PhptExternalFileCannotBeLoadedException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/PhptExternalFileCannotBeLoadedException.php',
     'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
-    'PHPUnit\\Runner\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/ReflectionException.php',
     'PHPUnit\\Runner\\ResultCache\\DefaultResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCache/DefaultResultCache.php',
     'PHPUnit\\Runner\\ResultCache\\NullResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCache/NullResultCache.php',
     'PHPUnit\\Runner\\ResultCache\\ResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCache/ResultCache.php',
@@ -3783,6 +3824,7 @@ return array(
     'PHPUnit\\Runner\\TestSuiteSorter' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php',
     'PHPUnit\\Runner\\UnsupportedPhptSectionException' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception/UnsupportedPhptSectionException.php',
     'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
+    'PHPUnit\\TestRunner\\TestResult\\AfterTestClassMethodErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/AfterTestClassMethodErroredSubscriber.php',
     'PHPUnit\\TestRunner\\TestResult\\BeforeTestClassMethodErroredSubscriber' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/BeforeTestClassMethodErroredSubscriber.php',
     'PHPUnit\\TestRunner\\TestResult\\Collector' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResult/Collector.php',
     'PHPUnit\\TestRunner\\TestResult\\ExecutionStartedSubscriber' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/ExecutionStartedSubscriber.php',
@@ -3814,6 +3856,7 @@ return array(
     'PHPUnit\\TestRunner\\TestResult\\TestTriggeredPhpunitWarningSubscriber' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitWarningSubscriber.php',
     'PHPUnit\\TestRunner\\TestResult\\TestTriggeredWarningSubscriber' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredWarningSubscriber.php',
     'PHPUnit\\TextUI\\Application' => $vendorDir . '/phpunit/phpunit/src/TextUI/Application.php',
+    'PHPUnit\\TextUI\\CannotOpenSocketException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/CannotOpenSocketException.php',
     'PHPUnit\\TextUI\\CliArguments\\Builder' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Cli/Builder.php',
     'PHPUnit\\TextUI\\CliArguments\\Configuration' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Cli/Configuration.php',
     'PHPUnit\\TextUI\\CliArguments\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Cli/Exception.php',
@@ -3856,7 +3899,6 @@ return array(
     'PHPUnit\\TextUI\\Configuration\\Group' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/Group.php',
     'PHPUnit\\TextUI\\Configuration\\GroupCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollection.php',
     'PHPUnit\\TextUI\\Configuration\\GroupCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollectionIterator.php',
-    'PHPUnit\\TextUI\\Configuration\\IncludePathNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Exception/IncludePathNotConfiguredException.php',
     'PHPUnit\\TextUI\\Configuration\\IniSetting' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/IniSetting.php',
     'PHPUnit\\TextUI\\Configuration\\IniSettingCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollection.php',
     'PHPUnit\\TextUI\\Configuration\\IniSettingCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollectionIterator.php',
@@ -3890,9 +3932,7 @@ return array(
     'PHPUnit\\TextUI\\Configuration\\Variable' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/Variable.php',
     'PHPUnit\\TextUI\\Configuration\\VariableCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollection.php',
     'PHPUnit\\TextUI\\Configuration\\VariableCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollectionIterator.php',
-    'PHPUnit\\TextUI\\DirectoryDoesNotExistException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/DirectoryDoesNotExistException.php',
     'PHPUnit\\TextUI\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/Exception.php',
-    'PHPUnit\\TextUI\\ExtensionsNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/ExtensionsNotConfiguredException.php',
     'PHPUnit\\TextUI\\Help' => $vendorDir . '/phpunit/phpunit/src/TextUI/Help.php',
     'PHPUnit\\TextUI\\InvalidSocketException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/InvalidSocketException.php',
     'PHPUnit\\TextUI\\Output\\DefaultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/Output/Printer/DefaultPrinter.php',
@@ -3923,7 +3963,6 @@ return array(
     'PHPUnit\\TextUI\\Output\\Printer' => $vendorDir . '/phpunit/phpunit/src/TextUI/Output/Printer/Printer.php',
     'PHPUnit\\TextUI\\Output\\SummaryPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/Output/SummaryPrinter.php',
     'PHPUnit\\TextUI\\Output\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/Output/TestDox/ResultPrinter.php',
-    'PHPUnit\\TextUI\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php',
     'PHPUnit\\TextUI\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php',
     'PHPUnit\\TextUI\\ShellExitCodeCalculator' => $vendorDir . '/phpunit/phpunit/src/TextUI/ShellExitCodeCalculator.php',
     'PHPUnit\\TextUI\\TestDirectoryNotFoundException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php',
@@ -3964,7 +4003,6 @@ return array(
     'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Text.php',
     'PHPUnit\\TextUI\\XmlConfiguration\\Migration' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/Migration.php',
     'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilder' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilder.php',
-    'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilderException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilderException.php',
     'PHPUnit\\TextUI\\XmlConfiguration\\MigrationException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationException.php',
     'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrator.php',
     'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php',
@@ -4009,6 +4047,8 @@ return array(
     'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
     'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
     'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
+    'PHPUnit\\Util\\Http\\Downloader' => $vendorDir . '/phpunit/phpunit/src/Util/Http/Downloader.php',
+    'PHPUnit\\Util\\Http\\PhpDownloader' => $vendorDir . '/phpunit/phpunit/src/Util/Http/PhpDownloader.php',
     'PHPUnit\\Util\\InvalidDirectoryException' => $vendorDir . '/phpunit/phpunit/src/Util/Exception/InvalidDirectoryException.php',
     'PHPUnit\\Util\\InvalidJsonException' => $vendorDir . '/phpunit/phpunit/src/Util/Exception/InvalidJsonException.php',
     'PHPUnit\\Util\\InvalidVersionOperatorException' => $vendorDir . '/phpunit/phpunit/src/Util/Exception/InvalidVersionOperatorException.php',
@@ -4293,6 +4333,7 @@ return array(
     'PhpCsFixer\\Fixer\\Comment\\SingleLineCommentSpacingFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentSpacingFixer.php',
     'PhpCsFixer\\Fixer\\Comment\\SingleLineCommentStyleFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php',
     'PhpCsFixer\\Fixer\\ConfigurableFixerInterface' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php',
+    'PhpCsFixer\\Fixer\\ConfigurableFixerTrait' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerTrait.php',
     'PhpCsFixer\\Fixer\\ConstantNotation\\NativeConstantInvocationFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php',
     'PhpCsFixer\\Fixer\\ControlStructure\\ControlStructureBracesFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureBracesFixer.php',
     'PhpCsFixer\\Fixer\\ControlStructure\\ControlStructureContinuationPositionFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureContinuationPositionFixer.php',
@@ -4355,6 +4396,7 @@ return array(
     'PhpCsFixer\\Fixer\\Import\\SingleImportPerStatementFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php',
     'PhpCsFixer\\Fixer\\Import\\SingleLineAfterImportsFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php',
     'PhpCsFixer\\Fixer\\Indentation' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/Indentation.php',
+    'PhpCsFixer\\Fixer\\InternalFixerInterface' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/InternalFixerInterface.php',
     'PhpCsFixer\\Fixer\\LanguageConstruct\\ClassKeywordFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordFixer.php',
     'PhpCsFixer\\Fixer\\LanguageConstruct\\ClassKeywordRemoveFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php',
     'PhpCsFixer\\Fixer\\LanguageConstruct\\CombineConsecutiveIssetsFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php',
@@ -4405,6 +4447,7 @@ return array(
     'PhpCsFixer\\Fixer\\PhpTag\\FullOpeningTagFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php',
     'PhpCsFixer\\Fixer\\PhpTag\\LinebreakAfterOpeningTagFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php',
     'PhpCsFixer\\Fixer\\PhpTag\\NoClosingTagFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php',
+    'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitAssertNewNamesFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAssertNewNamesFixer.php',
     'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitAttributesFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAttributesFixer.php',
     'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitConstructFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php',
     'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitDataProviderNameFixer' => $vendorDir . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderNameFixer.php',
@@ -4569,6 +4612,7 @@ return array(
     'PhpCsFixer\\RuleSet\\Sets\\PHPUnit60MigrationRiskySet' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit60MigrationRiskySet.php',
     'PhpCsFixer\\RuleSet\\Sets\\PHPUnit75MigrationRiskySet' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit75MigrationRiskySet.php',
     'PhpCsFixer\\RuleSet\\Sets\\PHPUnit84MigrationRiskySet' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit84MigrationRiskySet.php',
+    'PhpCsFixer\\RuleSet\\Sets\\PHPUnit91MigrationRiskySet' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit91MigrationRiskySet.php',
     'PhpCsFixer\\RuleSet\\Sets\\PSR12RiskySet' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12RiskySet.php',
     'PhpCsFixer\\RuleSet\\Sets\\PSR12Set' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12Set.php',
     'PhpCsFixer\\RuleSet\\Sets\\PSR1Set' => $vendorDir . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR1Set.php',

+ 65 - 16
vendor/composer/autoload_static.php

@@ -93,6 +93,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'O' => 
         array (
             'Overtrue\\Pinyin\\' => 16,
+            'Overtrue\\ChineseCalendar\\' => 25,
         ),
         'M' => 
         array (
@@ -380,6 +381,10 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         array (
             0 => __DIR__ . '/..' . '/overtrue/pinyin/src',
         ),
+        'Overtrue\\ChineseCalendar\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/overtrue/chinese-calendar/src',
+        ),
         'Monolog\\' => 
         array (
             0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
@@ -758,17 +763,25 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'App\\Model\\Article' => __DIR__ . '/../..' . '/app/Model/Article.php',
         'App\\Model\\ArticleData' => __DIR__ . '/../..' . '/app/Model/ArticleData.php',
         'App\\Model\\BlackWord' => __DIR__ . '/../..' . '/app/Model/BlackWord.php',
+        'App\\Model\\Book' => __DIR__ . '/../..' . '/app/Model/Book.php',
         'App\\Model\\Category' => __DIR__ . '/../..' . '/app/Model/Category.php',
+        'App\\Model\\Complaint' => __DIR__ . '/../..' . '/app/Model/Complaint.php',
         'App\\Model\\Component' => __DIR__ . '/../..' . '/app/Model/Component.php',
         'App\\Model\\Department' => __DIR__ . '/../..' . '/app/Model/Department.php',
         'App\\Model\\District' => __DIR__ . '/../..' . '/app/Model/District.php',
         'App\\Model\\FooterCategory' => __DIR__ . '/../..' . '/app/Model/FooterCategory.php',
         'App\\Model\\FooterContent' => __DIR__ . '/../..' . '/app/Model/FooterContent.php',
+        'App\\Model\\Good' => __DIR__ . '/../..' . '/app/Model/Good.php',
+        'App\\Model\\JobHunting' => __DIR__ . '/../..' . '/app/Model/JobHunting.php',
+        'App\\Model\\JobRecruiting' => __DIR__ . '/../..' . '/app/Model/JobRecruiting.php',
         'App\\Model\\LetterOfComplaint' => __DIR__ . '/../..' . '/app/Model/LetterOfComplaint.php',
         'App\\Model\\LetterType' => __DIR__ . '/../..' . '/app/Model/LetterType.php',
         'App\\Model\\Link' => __DIR__ . '/../..' . '/app/Model/Link.php',
         'App\\Model\\Model' => __DIR__ . '/../..' . '/app/Model/Model.php',
+        'App\\Model\\Notice' => __DIR__ . '/../..' . '/app/Model/Notice.php',
+        'App\\Model\\Order' => __DIR__ . '/../..' . '/app/Model/Order.php',
         'App\\Model\\Sector' => __DIR__ . '/../..' . '/app/Model/Sector.php',
+        'App\\Model\\Size' => __DIR__ . '/../..' . '/app/Model/Size.php',
         'App\\Model\\Template' => __DIR__ . '/../..' . '/app/Model/Template.php',
         'App\\Model\\TemplateClass' => __DIR__ . '/../..' . '/app/Model/TemplateClass.php',
         'App\\Model\\User' => __DIR__ . '/../..' . '/app/Model/User.php',
@@ -777,10 +790,12 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'App\\Model\\WebsiteCategory' => __DIR__ . '/../..' . '/app/Model/WebsiteCategory.php',
         'App\\Model\\WebsiteColumn' => __DIR__ . '/../..' . '/app/Model/WebsiteColumn.php',
         'App\\Model\\WebsiteGroup' => __DIR__ . '/../..' . '/app/Model/WebsiteGroup.php',
+        'App\\Model\\WebsiteImg' => __DIR__ . '/../..' . '/app/Model/WebsiteImg.php',
         'App\\Model\\WebsiteRole' => __DIR__ . '/../..' . '/app/Model/WebsiteRole.php',
         'App\\Model\\WebsiteRoleUser' => __DIR__ . '/../..' . '/app/Model/WebsiteRoleUser.php',
         'App\\Model\\WebsiteTemplate' => __DIR__ . '/../..' . '/app/Model/WebsiteTemplate.php',
         'App\\Model\\WebsiteTemplateInfo' => __DIR__ . '/../..' . '/app/Model/WebsiteTemplateInfo.php',
+        'App\\Model\\WhiteRouter' => __DIR__ . '/../..' . '/app/Model/WhiteRouter.php',
         'App\\Service\\MinioService' => __DIR__ . '/../..' . '/app/Service/MinioService.php',
         'App\\Tools\\Result' => __DIR__ . '/../..' . '/app/Tools/Result.php',
         'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
@@ -1352,10 +1367,6 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Aws\\InternetMonitor\\InternetMonitorClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/InternetMonitor/InternetMonitorClient.php',
         'Aws\\Invoicing\\Exception\\InvoicingException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Invoicing/Exception/InvoicingException.php',
         'Aws\\Invoicing\\InvoicingClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/Invoicing/InvoicingClient.php',
-        'Aws\\IoT1ClickDevicesService\\Exception\\IoT1ClickDevicesServiceException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoT1ClickDevicesService/Exception/IoT1ClickDevicesServiceException.php',
-        'Aws\\IoT1ClickDevicesService\\IoT1ClickDevicesServiceClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoT1ClickDevicesService/IoT1ClickDevicesServiceClient.php',
-        'Aws\\IoT1ClickProjects\\Exception\\IoT1ClickProjectsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php',
-        'Aws\\IoT1ClickProjects\\IoT1ClickProjectsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoT1ClickProjects/IoT1ClickProjectsClient.php',
         'Aws\\IoTAnalytics\\Exception\\IoTAnalyticsException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoTAnalytics/Exception/IoTAnalyticsException.php',
         'Aws\\IoTAnalytics\\IoTAnalyticsClient' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoTAnalytics/IoTAnalyticsClient.php',
         'Aws\\IoTDeviceAdvisor\\Exception\\IoTDeviceAdvisorException' => __DIR__ . '/..' . '/aws/aws-sdk-php/src/IoTDeviceAdvisor/Exception/IoTDeviceAdvisorException.php',
@@ -2001,6 +2012,12 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Composer\\Pcre\\MatchResult' => __DIR__ . '/..' . '/composer/pcre/src/MatchResult.php',
         'Composer\\Pcre\\MatchStrictGroupsResult' => __DIR__ . '/..' . '/composer/pcre/src/MatchStrictGroupsResult.php',
         'Composer\\Pcre\\MatchWithOffsetsResult' => __DIR__ . '/..' . '/composer/pcre/src/MatchWithOffsetsResult.php',
+        'Composer\\Pcre\\PHPStan\\InvalidRegexPatternRule' => __DIR__ . '/..' . '/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php',
+        'Composer\\Pcre\\PHPStan\\PregMatchFlags' => __DIR__ . '/..' . '/composer/pcre/src/PHPStan/PregMatchFlags.php',
+        'Composer\\Pcre\\PHPStan\\PregMatchParameterOutTypeExtension' => __DIR__ . '/..' . '/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php',
+        'Composer\\Pcre\\PHPStan\\PregMatchTypeSpecifyingExtension' => __DIR__ . '/..' . '/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php',
+        'Composer\\Pcre\\PHPStan\\PregReplaceCallbackClosureTypeExtension' => __DIR__ . '/..' . '/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php',
+        'Composer\\Pcre\\PHPStan\\UnsafeStrictGroupsCallRule' => __DIR__ . '/..' . '/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php',
         'Composer\\Pcre\\PcreException' => __DIR__ . '/..' . '/composer/pcre/src/PcreException.php',
         'Composer\\Pcre\\Preg' => __DIR__ . '/..' . '/composer/pcre/src/Preg.php',
         'Composer\\Pcre\\Regex' => __DIR__ . '/..' . '/composer/pcre/src/Regex.php',
@@ -2049,6 +2066,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'DeepCopy\\Matcher\\PropertyTypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php',
         'DeepCopy\\Reflection\\ReflectionHelper' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php',
         'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php',
+        'DeepCopy\\TypeFilter\\Date\\DatePeriodFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DatePeriodFilter.php',
         'DeepCopy\\TypeFilter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php',
         'DeepCopy\\TypeFilter\\ShallowCopyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php',
         'DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php',
@@ -2436,6 +2454,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Command\\Concerns\\HasParameters' => __DIR__ . '/..' . '/hyperf/command/src/Concerns/HasParameters.php',
         'Hyperf\\Command\\Concerns\\InteractsWithIO' => __DIR__ . '/..' . '/hyperf/command/src/Concerns/InteractsWithIO.php',
         'Hyperf\\Command\\Concerns\\NullDisableEventDispatcher' => __DIR__ . '/..' . '/hyperf/command/src/Concerns/NullDisableEventDispatcher.php',
+        'Hyperf\\Command\\Concerns\\Prohibitable' => __DIR__ . '/..' . '/hyperf/command/src/Concerns/Prohibitable.php',
         'Hyperf\\Command\\ConfigProvider' => __DIR__ . '/..' . '/hyperf/command/src/ConfigProvider.php',
         'Hyperf\\Command\\Console' => __DIR__ . '/..' . '/hyperf/command/src/Console.php',
         'Hyperf\\Command\\Event\\AfterExecute' => __DIR__ . '/..' . '/hyperf/command/src/Event/AfterExecute.php',
@@ -2512,6 +2531,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Context\\Traits\\CoroutineProxy' => __DIR__ . '/..' . '/hyperf/context/src/Traits/CoroutineProxy.php',
         'Hyperf\\Contract\\ApplicationInterface' => __DIR__ . '/..' . '/hyperf/contract/src/ApplicationInterface.php',
         'Hyperf\\Contract\\Arrayable' => __DIR__ . '/..' . '/hyperf/contract/src/Arrayable.php',
+        'Hyperf\\Contract\\CanBeEscapedWhenCastToString' => __DIR__ . '/..' . '/hyperf/contract/src/CanBeEscapedWhenCastToString.php',
         'Hyperf\\Contract\\Castable' => __DIR__ . '/..' . '/hyperf/contract/src/Castable.php',
         'Hyperf\\Contract\\CastsAttributes' => __DIR__ . '/..' . '/hyperf/contract/src/CastsAttributes.php',
         'Hyperf\\Contract\\CastsInboundAttributes' => __DIR__ . '/..' . '/hyperf/contract/src/CastsInboundAttributes.php',
@@ -2568,7 +2588,9 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Coroutine\\Exception\\TimeoutException' => __DIR__ . '/..' . '/hyperf/coroutine/src/Exception/TimeoutException.php',
         'Hyperf\\Coroutine\\Exception\\WaitTimeoutException' => __DIR__ . '/..' . '/hyperf/coroutine/src/Exception/WaitTimeoutException.php',
         'Hyperf\\Coroutine\\Locker' => __DIR__ . '/..' . '/hyperf/coroutine/src/Locker.php',
+        'Hyperf\\Coroutine\\Mutex' => __DIR__ . '/..' . '/hyperf/coroutine/src/Mutex.php',
         'Hyperf\\Coroutine\\Parallel' => __DIR__ . '/..' . '/hyperf/coroutine/src/Parallel.php',
+        'Hyperf\\Coroutine\\WaitConcurrent' => __DIR__ . '/..' . '/hyperf/coroutine/src/WaitConcurrent.php',
         'Hyperf\\Coroutine\\WaitGroup' => __DIR__ . '/..' . '/hyperf/coroutine/src/WaitGroup.php',
         'Hyperf\\Coroutine\\Waiter' => __DIR__ . '/..' . '/hyperf/coroutine/src/Waiter.php',
         'Hyperf\\Database\\Commands\\Annotations\\RewriteReturnType' => __DIR__ . '/..' . '/hyperf/database/src/Commands/Annotations/RewriteReturnType.php',
@@ -2620,10 +2642,15 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Database\\Events\\TransactionBeginning' => __DIR__ . '/..' . '/hyperf/database/src/Events/TransactionBeginning.php',
         'Hyperf\\Database\\Events\\TransactionCommitted' => __DIR__ . '/..' . '/hyperf/database/src/Events/TransactionCommitted.php',
         'Hyperf\\Database\\Events\\TransactionRolledBack' => __DIR__ . '/..' . '/hyperf/database/src/Events/TransactionRolledBack.php',
+        'Hyperf\\Database\\Exception\\ClassMorphViolationException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/ClassMorphViolationException.php',
         'Hyperf\\Database\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/InvalidArgumentException.php',
         'Hyperf\\Database\\Exception\\InvalidBindingException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/InvalidBindingException.php',
         'Hyperf\\Database\\Exception\\InvalidCastException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/InvalidCastException.php',
+        'Hyperf\\Database\\Exception\\MultipleColumnsSelectedException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/MultipleColumnsSelectedException.php',
+        'Hyperf\\Database\\Exception\\MultipleRecordsFoundException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/MultipleRecordsFoundException.php',
         'Hyperf\\Database\\Exception\\QueryException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/QueryException.php',
+        'Hyperf\\Database\\Exception\\RecordsNotFoundException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/RecordsNotFoundException.php',
+        'Hyperf\\Database\\Exception\\UniqueConstraintViolationException' => __DIR__ . '/..' . '/hyperf/database/src/Exception/UniqueConstraintViolationException.php',
         'Hyperf\\Database\\Grammar' => __DIR__ . '/..' . '/hyperf/database/src/Grammar.php',
         'Hyperf\\Database\\Migrations\\DatabaseMigrationRepository' => __DIR__ . '/..' . '/hyperf/database/src/Migrations/DatabaseMigrationRepository.php',
         'Hyperf\\Database\\Migrations\\Migration' => __DIR__ . '/..' . '/hyperf/database/src/Migrations/Migration.php',
@@ -2863,10 +2890,12 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Dispatcher\\Exceptions\\InvalidArgumentException' => __DIR__ . '/..' . '/hyperf/dispatcher/src/Exceptions/InvalidArgumentException.php',
         'Hyperf\\Dispatcher\\HttpDispatcher' => __DIR__ . '/..' . '/hyperf/dispatcher/src/HttpDispatcher.php',
         'Hyperf\\Dispatcher\\HttpRequestHandler' => __DIR__ . '/..' . '/hyperf/dispatcher/src/HttpRequestHandler.php',
+        'Hyperf\\Engine\\Barrier' => __DIR__ . '/..' . '/hyperf/engine/src/Barrier.php',
         'Hyperf\\Engine\\Channel' => __DIR__ . '/..' . '/hyperf/engine/src/Channel.php',
         'Hyperf\\Engine\\ConfigProvider' => __DIR__ . '/..' . '/hyperf/engine/src/ConfigProvider.php',
         'Hyperf\\Engine\\Constant' => __DIR__ . '/..' . '/hyperf/engine/src/Constant.php',
         'Hyperf\\Engine\\Constant\\SocketType' => __DIR__ . '/..' . '/hyperf/engine/src/Constant/SocketType.php',
+        'Hyperf\\Engine\\Contract\\BarrierInterface' => __DIR__ . '/..' . '/hyperf/engine-contract/src/BarrierInterface.php',
         'Hyperf\\Engine\\Contract\\ChannelInterface' => __DIR__ . '/..' . '/hyperf/engine-contract/src/ChannelInterface.php',
         'Hyperf\\Engine\\Contract\\CoroutineInterface' => __DIR__ . '/..' . '/hyperf/engine-contract/src/CoroutineInterface.php',
         'Hyperf\\Engine\\Contract\\DefaultOptionInterface' => __DIR__ . '/..' . '/hyperf/engine-contract/src/DefaultOptionInterface.php',
@@ -2981,6 +3010,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Framework\\Event\\OnWorkerStop' => __DIR__ . '/..' . '/hyperf/framework/src/Event/OnWorkerStop.php',
         'Hyperf\\Framework\\Event\\OtherWorkerStart' => __DIR__ . '/..' . '/hyperf/framework/src/Event/OtherWorkerStart.php',
         'Hyperf\\Framework\\Exception\\NotImplementedException' => __DIR__ . '/..' . '/hyperf/framework/src/Exception/NotImplementedException.php',
+        'Hyperf\\Framework\\Logger\\ConsoleLogger' => __DIR__ . '/..' . '/hyperf/framework/src/Logger/ConsoleLogger.php',
         'Hyperf\\Framework\\Logger\\StdoutLogger' => __DIR__ . '/..' . '/hyperf/framework/src/Logger/StdoutLogger.php',
         'Hyperf\\Framework\\SymfonyEventDispatcher' => __DIR__ . '/..' . '/hyperf/framework/src/SymfonyEventDispatcher.php',
         'Hyperf\\Guzzle\\ClientFactory' => __DIR__ . '/..' . '/hyperf/guzzle/src/ClientFactory.php',
@@ -3218,6 +3248,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Process\\ProcessCollector' => __DIR__ . '/..' . '/hyperf/process/src/ProcessCollector.php',
         'Hyperf\\Process\\ProcessManager' => __DIR__ . '/..' . '/hyperf/process/src/ProcessManager.php',
         'Hyperf\\Redis\\ConfigProvider' => __DIR__ . '/..' . '/hyperf/redis/src/ConfigProvider.php',
+        'Hyperf\\Redis\\Event\\CommandExecuted' => __DIR__ . '/..' . '/hyperf/redis/src/Event/CommandExecuted.php',
         'Hyperf\\Redis\\Exception\\InvalidRedisConnectionException' => __DIR__ . '/..' . '/hyperf/redis/src/Exception/InvalidRedisConnectionException.php',
         'Hyperf\\Redis\\Exception\\InvalidRedisOptionException' => __DIR__ . '/..' . '/hyperf/redis/src/Exception/InvalidRedisOptionException.php',
         'Hyperf\\Redis\\Exception\\InvalidRedisProxyException' => __DIR__ . '/..' . '/hyperf/redis/src/Exception/InvalidRedisProxyException.php',
@@ -3335,6 +3366,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Hyperf\\Support\\Backoff\\ArrayBackoff' => __DIR__ . '/..' . '/hyperf/support/src/Backoff/ArrayBackoff.php',
         'Hyperf\\Support\\ClearStatCache' => __DIR__ . '/..' . '/hyperf/support/src/ClearStatCache.php',
         'Hyperf\\Support\\Composer' => __DIR__ . '/..' . '/hyperf/support/src/Composer.php',
+        'Hyperf\\Support\\DotenvManager' => __DIR__ . '/..' . '/hyperf/support/src/DotenvManager.php',
         'Hyperf\\Support\\Exception\\ExceptionThrower' => __DIR__ . '/..' . '/hyperf/support/src/Exception/ExceptionThrower.php',
         'Hyperf\\Support\\Exception\\IPReadFailedException' => __DIR__ . '/..' . '/hyperf/support/src/Exception/IPReadFailedException.php',
         'Hyperf\\Support\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/hyperf/support/src/Exception/InvalidArgumentException.php',
@@ -3823,6 +3855,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Monolog\\Handler\\WebRequestRecognizerTrait' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php',
         'Monolog\\Handler\\WhatFailureGroupHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',
         'Monolog\\Handler\\ZendMonitorHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',
+        'Monolog\\JsonSerializableDateTimeImmutable' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/JsonSerializableDateTimeImmutable.php',
         'Monolog\\Level' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Level.php',
         'Monolog\\LogRecord' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/LogRecord.php',
         'Monolog\\Logger' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Logger.php',
@@ -3844,10 +3877,12 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'Monolog\\Registry' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Registry.php',
         'Monolog\\ResettableInterface' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/ResettableInterface.php',
         'Monolog\\SignalHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/SignalHandler.php',
+        'Monolog\\Test\\MonologTestCase' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Test/MonologTestCase.php',
         'Monolog\\Test\\TestCase' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Test/TestCase.php',
         'Monolog\\Utils' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Utils.php',
         'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
         'Override' => __DIR__ . '/..' . '/symfony/polyfill-php83/Resources/stubs/Override.php',
+        'Overtrue\\ChineseCalendar\\Calendar' => __DIR__ . '/..' . '/overtrue/chinese-calendar/src/Calendar.php',
         'Overtrue\\Pinyin\\Collection' => __DIR__ . '/..' . '/overtrue/pinyin/src/Collection.php',
         'Overtrue\\Pinyin\\Converter' => __DIR__ . '/..' . '/overtrue/pinyin/src/Converter.php',
         'Overtrue\\Pinyin\\Pinyin' => __DIR__ . '/..' . '/overtrue/pinyin/src/Pinyin.php',
@@ -3966,10 +4001,14 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Event\\TestSuite\\TestSuiteWithName' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteWithName.php',
         'PHPUnit\\Event\\Test\\AfterLastTestMethodCalled' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalled.php',
         'PHPUnit\\Event\\Test\\AfterLastTestMethodCalledSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalledSubscriber.php',
+        'PHPUnit\\Event\\Test\\AfterLastTestMethodErrored' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErrored.php',
+        'PHPUnit\\Event\\Test\\AfterLastTestMethodErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErroredSubscriber.php',
         'PHPUnit\\Event\\Test\\AfterLastTestMethodFinished' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinished.php',
         'PHPUnit\\Event\\Test\\AfterLastTestMethodFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinishedSubscriber.php',
         'PHPUnit\\Event\\Test\\AfterTestMethodCalled' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalled.php',
         'PHPUnit\\Event\\Test\\AfterTestMethodCalledSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalledSubscriber.php',
+        'PHPUnit\\Event\\Test\\AfterTestMethodErrored' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErrored.php',
+        'PHPUnit\\Event\\Test\\AfterTestMethodErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErroredSubscriber.php',
         'PHPUnit\\Event\\Test\\AfterTestMethodFinished' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinished.php',
         'PHPUnit\\Event\\Test\\AfterTestMethodFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinishedSubscriber.php',
         'PHPUnit\\Event\\Test\\AssertionFailed' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/Assertion/AssertionFailed.php',
@@ -3984,6 +4023,8 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Event\\Test\\BeforeFirstTestMethodFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinishedSubscriber.php',
         'PHPUnit\\Event\\Test\\BeforeTestMethodCalled' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalled.php',
         'PHPUnit\\Event\\Test\\BeforeTestMethodCalledSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalledSubscriber.php',
+        'PHPUnit\\Event\\Test\\BeforeTestMethodErrored' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErrored.php',
+        'PHPUnit\\Event\\Test\\BeforeTestMethodErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErroredSubscriber.php',
         'PHPUnit\\Event\\Test\\BeforeTestMethodFinished' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinished.php',
         'PHPUnit\\Event\\Test\\BeforeTestMethodFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinishedSubscriber.php',
         'PHPUnit\\Event\\Test\\ComparatorRegistered' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/ComparatorRegistered.php',
@@ -4037,10 +4078,14 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Event\\Test\\PhpunitWarningTriggeredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggeredSubscriber.php',
         'PHPUnit\\Event\\Test\\PostConditionCalled' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalled.php',
         'PHPUnit\\Event\\Test\\PostConditionCalledSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalledSubscriber.php',
+        'PHPUnit\\Event\\Test\\PostConditionErrored' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErrored.php',
+        'PHPUnit\\Event\\Test\\PostConditionErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErroredSubscriber.php',
         'PHPUnit\\Event\\Test\\PostConditionFinished' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinished.php',
         'PHPUnit\\Event\\Test\\PostConditionFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinishedSubscriber.php',
         'PHPUnit\\Event\\Test\\PreConditionCalled' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalled.php',
         'PHPUnit\\Event\\Test\\PreConditionCalledSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalledSubscriber.php',
+        'PHPUnit\\Event\\Test\\PreConditionErrored' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErrored.php',
+        'PHPUnit\\Event\\Test\\PreConditionErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErroredSubscriber.php',
         'PHPUnit\\Event\\Test\\PreConditionFinished' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinished.php',
         'PHPUnit\\Event\\Test\\PreConditionFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinishedSubscriber.php',
         'PHPUnit\\Event\\Test\\PreparationFailed' => __DIR__ . '/..' . '/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailed.php',
@@ -4202,12 +4247,11 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/MethodNameMatch.php',
         'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/ParametersMatch.php',
         'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/Stub.php',
-        'PHPUnit\\Framework\\MockObject\\CannotUseAddMethodsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php',
         'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php',
         'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php',
         'PHPUnit\\Framework\\MockObject\\DoubledCloneMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/DoubledCloneMethod.php',
         'PHPUnit\\Framework\\MockObject\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php',
-        'PHPUnit\\Framework\\MockObject\\Generator\\ClassAlreadyExistsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassAlreadyExistsException.php',
+        'PHPUnit\\Framework\\MockObject\\Generator\\CannotUseAddMethodsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/CannotUseAddMethodsException.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\ClassIsEnumerationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsEnumerationException.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\ClassIsFinalException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsFinalException.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\ClassIsReadonlyException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsReadonlyException.php',
@@ -4220,6 +4264,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Framework\\MockObject\\Generator\\MockMethodSet' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/MockMethodSet.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\MockTrait' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/MockTrait.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\MockType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/MockType.php',
+        'PHPUnit\\Framework\\MockObject\\Generator\\NameAlreadyInUseException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/NameAlreadyInUseException.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\OriginalConstructorInvocationRequiredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/OriginalConstructorInvocationRequiredException.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\ReflectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ReflectionException.php',
         'PHPUnit\\Framework\\MockObject\\Generator\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/RuntimeException.php',
@@ -4245,8 +4290,8 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Framework\\MockObject\\MockObjectApi' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MockObjectApi.php',
         'PHPUnit\\Framework\\MockObject\\MockObjectInternal' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObjectInternal.php',
         'PHPUnit\\Framework\\MockObject\\NeverReturningMethodException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/NeverReturningMethodException.php',
+        'PHPUnit\\Framework\\MockObject\\NoMoreReturnValuesConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/NoMoreReturnValuesConfiguredException.php',
         'PHPUnit\\Framework\\MockObject\\ProxiedCloneMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/ProxiedCloneMethod.php',
-        'PHPUnit\\Framework\\MockObject\\ReflectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php',
         'PHPUnit\\Framework\\MockObject\\ReturnValueGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/ReturnValueGenerator.php',
         'PHPUnit\\Framework\\MockObject\\ReturnValueNotConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php',
         'PHPUnit\\Framework\\MockObject\\Rule\\AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyInvokedCount.php',
@@ -4307,7 +4352,6 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Framework\\UnknownClassOrInterfaceException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/UnknownClassOrInterfaceException.php',
         'PHPUnit\\Framework\\UnknownTypeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/UnknownTypeException.php',
         'PHPUnit\\Logging\\EventLogger' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/EventLogger.php',
-        'PHPUnit\\Logging\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/Exception.php',
         'PHPUnit\\Logging\\JUnit\\JunitXmlLogger' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/JunitXmlLogger.php',
         'PHPUnit\\Logging\\JUnit\\Subscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/Subscriber.php',
         'PHPUnit\\Logging\\JUnit\\TestErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestErroredSubscriber.php',
@@ -4317,6 +4361,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Logging\\JUnit\\TestPreparationFailedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationFailedSubscriber.php',
         'PHPUnit\\Logging\\JUnit\\TestPreparationStartedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationStartedSubscriber.php',
         'PHPUnit\\Logging\\JUnit\\TestPreparedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparedSubscriber.php',
+        'PHPUnit\\Logging\\JUnit\\TestPrintedUnexpectedOutputSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPrintedUnexpectedOutputSubscriber.php',
         'PHPUnit\\Logging\\JUnit\\TestRunnerExecutionFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestRunnerExecutionFinishedSubscriber.php',
         'PHPUnit\\Logging\\JUnit\\TestSkippedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSkippedSubscriber.php',
         'PHPUnit\\Logging\\JUnit\\TestSuiteFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSuiteFinishedSubscriber.php',
@@ -4331,7 +4376,9 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Logging\\TeamCity\\TestPreparedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestPreparedSubscriber.php',
         'PHPUnit\\Logging\\TeamCity\\TestRunnerExecutionFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestRunnerExecutionFinishedSubscriber.php',
         'PHPUnit\\Logging\\TeamCity\\TestSkippedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSkippedSubscriber.php',
+        'PHPUnit\\Logging\\TeamCity\\TestSuiteBeforeFirstTestMethodErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteBeforeFirstTestMethodErroredSubscriber.php',
         'PHPUnit\\Logging\\TeamCity\\TestSuiteFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteFinishedSubscriber.php',
+        'PHPUnit\\Logging\\TeamCity\\TestSuiteSkippedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteSkippedSubscriber.php',
         'PHPUnit\\Logging\\TeamCity\\TestSuiteStartedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteStartedSubscriber.php',
         'PHPUnit\\Logging\\TestDox\\HtmlRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TestDox/HtmlRenderer.php',
         'PHPUnit\\Logging\\TestDox\\NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Logging/TestDox/NamePrettifier.php',
@@ -4390,6 +4437,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Metadata\\IgnoreDeprecations' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/IgnoreDeprecations.php',
         'PHPUnit\\Metadata\\IgnoreFunctionForCodeCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/IgnoreFunctionForCodeCoverage.php',
         'PHPUnit\\Metadata\\IgnoreMethodForCodeCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/IgnoreMethodForCodeCoverage.php',
+        'PHPUnit\\Metadata\\InvalidAttributeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/Exception/InvalidAttributeException.php',
         'PHPUnit\\Metadata\\InvalidVersionRequirementException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/Exception/InvalidVersionRequirementException.php',
         'PHPUnit\\Metadata\\Metadata' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/Metadata.php',
         'PHPUnit\\Metadata\\MetadataCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/Metadata/MetadataCollection.php',
@@ -4446,7 +4494,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Runner\\ClassDoesNotExtendTestCaseException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/ClassDoesNotExtendTestCaseException.php',
         'PHPUnit\\Runner\\ClassIsAbstractException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/ClassIsAbstractException.php',
         'PHPUnit\\Runner\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/CodeCoverage.php',
-        'PHPUnit\\Runner\\DirectoryCannotBeCreatedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/DirectoryCannotBeCreatedException.php',
+        'PHPUnit\\Runner\\DirectoryDoesNotExistException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/DirectoryDoesNotExistException.php',
         'PHPUnit\\Runner\\ErrorException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/ErrorException.php',
         'PHPUnit\\Runner\\ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ErrorHandler.php',
         'PHPUnit\\Runner\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/Exception.php',
@@ -4469,11 +4517,9 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Runner\\GarbageCollection\\TestFinishedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/TestFinishedSubscriber.php',
         'PHPUnit\\Runner\\InvalidOrderException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/InvalidOrderException.php',
         'PHPUnit\\Runner\\InvalidPhptFileException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/InvalidPhptFileException.php',
-        'PHPUnit\\Runner\\NoIgnoredEventException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/NoIgnoredEventException.php',
         'PHPUnit\\Runner\\ParameterDoesNotExistException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/ParameterDoesNotExistException.php',
         'PHPUnit\\Runner\\PhptExternalFileCannotBeLoadedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/PhptExternalFileCannotBeLoadedException.php',
         'PHPUnit\\Runner\\PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
-        'PHPUnit\\Runner\\ReflectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/ReflectionException.php',
         'PHPUnit\\Runner\\ResultCache\\DefaultResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ResultCache/DefaultResultCache.php',
         'PHPUnit\\Runner\\ResultCache\\NullResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ResultCache/NullResultCache.php',
         'PHPUnit\\Runner\\ResultCache\\ResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ResultCache/ResultCache.php',
@@ -4492,6 +4538,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Runner\\TestSuiteSorter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php',
         'PHPUnit\\Runner\\UnsupportedPhptSectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception/UnsupportedPhptSectionException.php',
         'PHPUnit\\Runner\\Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php',
+        'PHPUnit\\TestRunner\\TestResult\\AfterTestClassMethodErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/AfterTestClassMethodErroredSubscriber.php',
         'PHPUnit\\TestRunner\\TestResult\\BeforeTestClassMethodErroredSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/BeforeTestClassMethodErroredSubscriber.php',
         'PHPUnit\\TestRunner\\TestResult\\Collector' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResult/Collector.php',
         'PHPUnit\\TestRunner\\TestResult\\ExecutionStartedSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/ExecutionStartedSubscriber.php',
@@ -4523,6 +4570,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\TestRunner\\TestResult\\TestTriggeredPhpunitWarningSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitWarningSubscriber.php',
         'PHPUnit\\TestRunner\\TestResult\\TestTriggeredWarningSubscriber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredWarningSubscriber.php',
         'PHPUnit\\TextUI\\Application' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Application.php',
+        'PHPUnit\\TextUI\\CannotOpenSocketException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/CannotOpenSocketException.php',
         'PHPUnit\\TextUI\\CliArguments\\Builder' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Cli/Builder.php',
         'PHPUnit\\TextUI\\CliArguments\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Cli/Configuration.php',
         'PHPUnit\\TextUI\\CliArguments\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Cli/Exception.php',
@@ -4565,7 +4613,6 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\TextUI\\Configuration\\Group' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/Group.php',
         'PHPUnit\\TextUI\\Configuration\\GroupCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollection.php',
         'PHPUnit\\TextUI\\Configuration\\GroupCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollectionIterator.php',
-        'PHPUnit\\TextUI\\Configuration\\IncludePathNotConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Exception/IncludePathNotConfiguredException.php',
         'PHPUnit\\TextUI\\Configuration\\IniSetting' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/IniSetting.php',
         'PHPUnit\\TextUI\\Configuration\\IniSettingCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollection.php',
         'PHPUnit\\TextUI\\Configuration\\IniSettingCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollectionIterator.php',
@@ -4599,9 +4646,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\TextUI\\Configuration\\Variable' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/Variable.php',
         'PHPUnit\\TextUI\\Configuration\\VariableCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollection.php',
         'PHPUnit\\TextUI\\Configuration\\VariableCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollectionIterator.php',
-        'PHPUnit\\TextUI\\DirectoryDoesNotExistException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/DirectoryDoesNotExistException.php',
         'PHPUnit\\TextUI\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/Exception.php',
-        'PHPUnit\\TextUI\\ExtensionsNotConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/ExtensionsNotConfiguredException.php',
         'PHPUnit\\TextUI\\Help' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Help.php',
         'PHPUnit\\TextUI\\InvalidSocketException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/InvalidSocketException.php',
         'PHPUnit\\TextUI\\Output\\DefaultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Output/Printer/DefaultPrinter.php',
@@ -4632,7 +4677,6 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\TextUI\\Output\\Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Output/Printer/Printer.php',
         'PHPUnit\\TextUI\\Output\\SummaryPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Output/SummaryPrinter.php',
         'PHPUnit\\TextUI\\Output\\TestDox\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Output/TestDox/ResultPrinter.php',
-        'PHPUnit\\TextUI\\ReflectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php',
         'PHPUnit\\TextUI\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php',
         'PHPUnit\\TextUI\\ShellExitCodeCalculator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ShellExitCodeCalculator.php',
         'PHPUnit\\TextUI\\TestDirectoryNotFoundException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php',
@@ -4673,7 +4717,6 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Text' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Text.php',
         'PHPUnit\\TextUI\\XmlConfiguration\\Migration' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/Migration.php',
         'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilder' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilder.php',
-        'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilderException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilderException.php',
         'PHPUnit\\TextUI\\XmlConfiguration\\MigrationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationException.php',
         'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrator.php',
         'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php',
@@ -4718,6 +4761,8 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PHPUnit\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php',
         'PHPUnit\\Util\\Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php',
         'PHPUnit\\Util\\GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php',
+        'PHPUnit\\Util\\Http\\Downloader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Http/Downloader.php',
+        'PHPUnit\\Util\\Http\\PhpDownloader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Http/PhpDownloader.php',
         'PHPUnit\\Util\\InvalidDirectoryException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Exception/InvalidDirectoryException.php',
         'PHPUnit\\Util\\InvalidJsonException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Exception/InvalidJsonException.php',
         'PHPUnit\\Util\\InvalidVersionOperatorException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Exception/InvalidVersionOperatorException.php',
@@ -5002,6 +5047,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PhpCsFixer\\Fixer\\Comment\\SingleLineCommentSpacingFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentSpacingFixer.php',
         'PhpCsFixer\\Fixer\\Comment\\SingleLineCommentStyleFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php',
         'PhpCsFixer\\Fixer\\ConfigurableFixerInterface' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php',
+        'PhpCsFixer\\Fixer\\ConfigurableFixerTrait' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerTrait.php',
         'PhpCsFixer\\Fixer\\ConstantNotation\\NativeConstantInvocationFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php',
         'PhpCsFixer\\Fixer\\ControlStructure\\ControlStructureBracesFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureBracesFixer.php',
         'PhpCsFixer\\Fixer\\ControlStructure\\ControlStructureContinuationPositionFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureContinuationPositionFixer.php',
@@ -5064,6 +5110,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PhpCsFixer\\Fixer\\Import\\SingleImportPerStatementFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php',
         'PhpCsFixer\\Fixer\\Import\\SingleLineAfterImportsFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php',
         'PhpCsFixer\\Fixer\\Indentation' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/Indentation.php',
+        'PhpCsFixer\\Fixer\\InternalFixerInterface' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/InternalFixerInterface.php',
         'PhpCsFixer\\Fixer\\LanguageConstruct\\ClassKeywordFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordFixer.php',
         'PhpCsFixer\\Fixer\\LanguageConstruct\\ClassKeywordRemoveFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php',
         'PhpCsFixer\\Fixer\\LanguageConstruct\\CombineConsecutiveIssetsFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php',
@@ -5114,6 +5161,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PhpCsFixer\\Fixer\\PhpTag\\FullOpeningTagFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php',
         'PhpCsFixer\\Fixer\\PhpTag\\LinebreakAfterOpeningTagFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php',
         'PhpCsFixer\\Fixer\\PhpTag\\NoClosingTagFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php',
+        'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitAssertNewNamesFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAssertNewNamesFixer.php',
         'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitAttributesFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAttributesFixer.php',
         'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitConstructFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php',
         'PhpCsFixer\\Fixer\\PhpUnit\\PhpUnitDataProviderNameFixer' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderNameFixer.php',
@@ -5278,6 +5326,7 @@ class ComposerStaticInita4fab8fe7069cf132d8088fb346f5c2a
         'PhpCsFixer\\RuleSet\\Sets\\PHPUnit60MigrationRiskySet' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit60MigrationRiskySet.php',
         'PhpCsFixer\\RuleSet\\Sets\\PHPUnit75MigrationRiskySet' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit75MigrationRiskySet.php',
         'PhpCsFixer\\RuleSet\\Sets\\PHPUnit84MigrationRiskySet' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit84MigrationRiskySet.php',
+        'PhpCsFixer\\RuleSet\\Sets\\PHPUnit91MigrationRiskySet' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit91MigrationRiskySet.php',
         'PhpCsFixer\\RuleSet\\Sets\\PSR12RiskySet' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12RiskySet.php',
         'PhpCsFixer\\RuleSet\\Sets\\PSR12Set' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12Set.php',
         'PhpCsFixer\\RuleSet\\Sets\\PSR1Set' => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR1Set.php',

Some files were not shown because too many files changed in this diff