struturizr-php / extensions-php
This package is abandoned and no longer maintained.
The author suggests using the structurizr-php/extensions-php package instead.
Structurizr for PHP extensions
dev-master
2019-12-11 09:19 UTC
Requires
Requires (Dev)
- ergebnis/phpstan-rules: ^0.14.0
- friendsofphp/php-cs-fixer: ^2.16
- phpstan/phpstan: ^0.11.19
- phpstan/phpstan-phpunit: ^0.11.2
- phpunit/phpunit: ^8.4
- symfony/var-dumper: ^4.3
- thecodingmachine/phpstan-strict-rules: ^0.11.2
This package is auto-updated.
Last update: 2019-12-11 09:19:22 UTC
README
Adr Importer
Import Decisions to into your model documentation directly from ADR files. Example:
<?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);