people_sdk/module_file

模块 People SDK:文件组件

v1.0.0 2024-06-10 21:58 UTC

This package is auto-updated.

Last update: 2024-09-10 22:34:20 UTC


README

描述

库包含应用程序模块,用于实现文件组件,使用API文件特性,在应用程序上。应用程序被视为LibertyCode应用程序。

要求

  • 脚本语言:PHP:版本 7 或 8

框架模块安装要求

  1. 模块仓库:liberty_code_module/validation:版本 1.0

    • 模块验证(或等效)。
    • 模块规则(或等效)。
  2. 模块仓库:liberty_code_module/datetime:版本 1.0

    • 模块 datetime(或等效)。
  3. 模块仓库:people_sdk/module_library:版本 1.0

    • 模块 requisition(或等效)。
  4. 模块仓库:people_sdk/module_user_profile:版本 1.0

    • 模块 user(或等效)。
  5. 模块仓库:people_sdk/module_app_profile:版本 1.0

    • 模块 app(或等效)。
  6. 模块仓库:people_sdk/module_group:版本 1.0

    • 模块 group(或等效)。
  7. 其他模块实现

    • 依赖注入配置

      • people_requisition_persistor

        请参阅 people_sdk/file v1.0 框架库实现要求,以获取持久化器的信息。

      • people_requisition_requester

        请参阅 people_sdk/file v1.0 框架库实现要求,以获取请求者的信息。

      • people_requisition_config.

安装

有几种可能的方法

Composer

  1. 要求

    它需要Composer安装。更多信息请访问: https://getcomposer.org.cn

  2. 命令:在项目根目录中移动

     cd "<project_root_dir_path>"
    
  3. 命令:安装

     php composer.phar require people_sdk/module_file ["<version>"]
    
  4. 注意

    • 包含供应商

      如果项目使用Composer,则必须包含供应商

        require_once('<project_root_dir_path>/vendor/autoload.php');
      
    • 配置

      安装命令允许在composer文件中添加,在应用模块:“

        {
            "require": {
                "people_sdk/module_file": "<version>"
            }
        }
      

包含

  1. 下载

    • 下载以下仓库。
    • 将其放在仓库根目录。
  2. 包含源代码

     require_once('<repository_root_dir_path>/include/Include.php');
    

应用程序安装

配置

  1. 配置:应用程序模块:“

    在列表部分添加所需模块

    从composer安装的YML配置格式示例

     list: [
         {
             path: "/vendor/people_sdk/module_file/src/file",
             config_parser: {
                 type: "string_table_php",
                 source_format_get_regexp: "#^\\<\\?php\\s*(.*)(\\s\\?\\>)?\\s*$#ms",
                 source_format_set_pattern: "<?php \\n%1$s",
                 cache_parser_require: true,
                 cache_file_parser_require: true
             }
         },
         {
             path: "/vendor/people_sdk/module_file/src/member",
             config_parser: {
                 type: "string_table_php",
                 source_format_get_regexp: "#^\\<\\?php\\s*(.*)(\\s\\?\\>)?\\s*$#ms",
                 source_format_set_pattern: "<?php \\n%1$s",
                 cache_parser_require: true,
                 cache_file_parser_require: true
             }
         },
         {
             path: "/vendor/people_sdk/module_file/src/group_member",
             config_parser: {
                 type: "string_table_php",
                 source_format_get_regexp: "#^\\<\\?php\\s*(.*)(\\s\\?\\>)?\\s*$#ms",
                 source_format_set_pattern: "<?php \\n%1$s",
                 cache_parser_require: true,
                 cache_file_parser_require: true
             }
         },
         {
             path: "/vendor/people_sdk/module_file/src/requisition",
             config_parser: {
                 type: "string_table_php",
                 source_format_get_regexp: "#^\\<\\?php\\s*(.*)(\\s\\?\\>)?\\s*$#ms",
                 source_format_set_pattern: "<?php \\n%1$s",
                 cache_parser_require: true,
                 cache_file_parser_require: true
             }
         }
     ]
    

配置

应用程序参数配置

  • 在您的模块中使用以下文件来配置特定元素

      <module_root_path>/config/ParamApp.php
    
  • 可配置元素

    • 配置到参数文件工厂。

    • 配置到参数成员工厂。

    • 配置到参数组成员工厂。

    • 配置到参数文件请求发送信息工厂。

使用

待办事项