struturizr-php/extensions-php

此包已被弃用,不再维护。作者建议使用 structurizr-php/extensions-php 包。

PHP 扩展的 Structurizr

dev-master 2019-12-11 09:19 UTC

This package is auto-updated.

Last update: 2019-12-11 09:19:22 UTC


README

Adr 导入器

从 ADR 文件直接导入决策到您的模型文档。示例

<?php
use StructurizrPHP\AdrTools\AdrToolsImporter;
use StructurizrPHP\Core\Workspace;

$workspace = new Workspace('1', 'Test Workspace', 'Just a test workspace');
$softwareSystem = $workspace->getModel()->addSoftwareSystem('Software System', 'Some kind of a system');

$importer = new AdrToolsImporter($workspace, __DIR__ . '/Resources/adr');
$importer->importArchitectureDecisionRecords($softwareSystem);