structurizr-php/extensions-php

PHP扩展的Structurizr

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

This package is auto-updated.

Last update: 2024-09-11 19:28:05 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);