hyvor/laradocs 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hyvor/laradocs

最新稳定版本:0.0.1

Composer 安装命令:

composer require hyvor/laradocs

包简介

Small libray from laravel projects to generate documentation quickly

README 文档

README

Fully customizable, small libray for laravel projects to generate documentation quickly.

Installation

Use the composer to install Doc generator to your laravel project.

composer require hyvor/laradocs 

Usage

After installation you need to publish it's assets and configurations file using following commands to make it customizable. You can define multiple documentation by using several arrays in config. Each array represents seperate configurations for specific documentation of your application.

The route key in the configuration file is the subdomain given by Laradocs to the documentation. You cannot use your application without that subdomain route key.

The theme key defines your theme css file name. Default theme file is theme.css.

Your content files path can be set in config.php at content_directory as base path of your application. Default path is docs.

navigation key in config is an array which defines the design of navigation in your documentation. There is a section array inside navigation array. The section seperates the links of your navigation panel.

Inside a section, there are multiple arrays for navigation links with each link comprised three keys. They are id, file, label

  • id is required, it defines the path for the link and content file.
  • file is optional, specify the path for content file if it is different from default id value
  • lable is also required which establish title of the page and navigation menu lable

Publish assets to public folder (* Required)

php artisan vendor:publish --provider="Hyvor\Laradocs\LaradocsServiceProvider" --tag="assets"

Asset file publication is required to make them accessible for laradocs.

Publish configuration files (* Required)

php artisan vendor:publish --provider="Hyvor\Laradocs\LaradocsServiceProvider" --tag="config"

Config file publish to your application directory is required. You must define its required fields to make your laradocs plugin work.

Publish view files (Optional)

php artisan vendor:publish --provider="Hyvor\Laradocs\LaradocsServiceProvider" --tag="views"

You only need to publish views to your application directory if you want to customize default structure of views.

How to create your own theme for documentation

There is an option provided in laradocs to create your own design for the documentation. You have to define path to your view files using the view value in config. There are several important dynamic variables returns from laradocs backend as displayed in table bellow.

Variable Name Data Type Description
$content mixed Returns the content of the page
$pageName string Returns the id value of page link
$label string Returns the label value of page link
$route string Returns the route name of the page
$nav array Returns navigation array of documentation

Inside config file

You can change this file values according to your requirement.

<?php

/**
    * you can have multiple documents as seperate arrays inside return array.
**/

return 
[
    [
        /**
         * @required
         * The subdomain given by Laradocs to the documentation
         */
        'route' => 'laradocs',
        /**
         * @optional
         * You can define path to your own theme here, laradocs default theme will display if null provided
         */
        'view' => null,
         /**
         * @required
         * where should we host your content files? path should be set from your application base path.
         */
        'content_directory' => 'resources/views/docs/laradocs',
        /**
         * @required
         * How is your document navigation should looks like?
         * It should have section and page links. each page link should have id,lable properties and file property is optional
         * Id represents link path, label defines title of page while option file field for define custom location for content file of relevant page.
         * All properties should be string
         * You can define multiples sections and multiple pages as you want
         */
        'navigation' => [
            'First Section' => [
                [
                    'id' => '', //page link url
                    'file' => 'index', // optional, you can define alternative file path here
                    'label' => 'Introduction' // page label
                ],
                [
                    'id' => 'description',
                    'label' => 'What is laradocs'
                ],
            ],
            'Second Section' => [
                [
                    'id' => 'about',
                    'label' => 'About us'
                ]
            ]
        ]
    ]
];

License

The MIT License (MIT). Please see License File for more information.

hyvor/laradocs 适用场景与选型建议

hyvor/laradocs 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.4k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 10 月 31 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 hyvor/laradocs 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 hyvor/laradocs 我们能提供哪些服务?
定制开发 / 二次开发

基于 hyvor/laradocs 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 2.4k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 18
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-10-31