mike4git/umlgeneration-bundle
最新稳定版本:v1.1.3
Composer 安装命令:
composer require mike4git/umlgeneration-bundle
包简介
UML Generation Bundle
README 文档
README
generates UML class diagrams and more based upon your class definitions
Setup
- copy env.dist and replace USER_ID with own ID (Retrieve:
echo $(id -u)in a terminal)
Install
Before you can use the Bundle, you need to add the git repository to your composer.json
composer require "mike4git/umlgeneration-bundle"
and add it to your bundles.php:
<?php declare(strict_types=1); return [ // mostly dev environment is enough \UMLGenerationBundle\UMLGenerationBundle::class => ['dev' => true], ];
Additionally, you'll have to install GraphViz (dot executable).
Users of Debian/Ubuntu-based distributions may simply invoke:
$ sudo apt-get install graphviz
Windows users have to download GraphViZ for Windows and remaining users should install from GraphViz homepage.
Use the following URL for the GraphViz usage: GraphViz
Usage
Generate dotfile:
$ php bin/console uml:generate -o myDotfileName
Note that this will generate a myDotfileName.dot file
Generate Graph:
$ dot -Tsvg myDotfileName.dot -o image.svg
After that you should see something like this:
Done.
统计信息
- 总下载量: 101
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2023-08-10
