iamserjo/mermaid-php
最新稳定版本:1.0.2
Composer 安装命令:
composer require iamserjo/mermaid-php
包简介
Mermaid.js generator for php
README 文档
README
Generate mermaid.js flowcharts with php.
Installation
You can install the package via composer:
composer require jonaspardon/mermaid-php
Usage
$graph = new Graph(new GraphDirection(GraphDirection::LEFT_TO_RIGHT)); $from = new Node( identifier: 'A', title: 'This package', shape: new NodeShape(NodeShape::ROUND_EDGES), style: new Style( backgroundColor: '#16a085', fontColor: '#ffffff', borderColor: '#333333', ), ); $to = new Node( identifier: 'B', title: 'Your application', shape: new NodeShape(NodeShape::HEXAGON), style: new Style( backgroundColor: '#55efc4', fontColor: '#000', borderColor: '#333333', ), ); $link = new Link($from, $to); $output = $graph->addNode($from) ->addNode($to) ->addLink($link) ->render();
flowchart LR;
A("This package");
style A fill:#16a085,stroke:#333333,stroke-width:1px,color:#ffffff;
B{{"Your application"}};
style B fill:#55efc4,stroke:#333333,stroke-width:1px,color:#000;
A-->B;
Loading
flowchart LR;
A("This package");
style A fill:#16a085,stroke:#333333,stroke-width:1px,color:#ffffff;
B{{"Your application"}};
style B fill:#55efc4,stroke:#333333,stroke-width:1px,color:#000;
A-->B;
Testing
composer test
Used by
- Laravel Event Visualizer - a Laravel package to visualize your application's events and handlers
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-20