Skip to content

Latest commit

 

History

History

README.md

Diagrams

Paired light/dark Graphviz diagrams for the ARCP PHP SDK. Edit the .dot sources; render with dot -Tsvg.

Architecture

ARCP PHP SDK architecture

Render

cd docs/diagrams
for f in *.dot; do dot -Tsvg "$f" -o "${f%.dot}.svg"; done

graphviz provides dot. On macOS: brew install graphviz. On Debian/Ubuntu: apt-get install -y graphviz.