structurizr-php / extensions-php
Structurizr for PHP extensions
Installs: 45 965
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 2
Open Issues: 0
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: 2024-10-11 19:46:28 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);