├── .github ├── dependabot.yml └── workflows │ └── push.yml ├── .gitignore ├── .scrutinizer.yml ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpcs.xml.dist ├── phpmd.xml.dist ├── phpstan.neon ├── phpunit.xml.dist ├── psalm.xml ├── src └── phpDocumentor │ └── GraphViz │ ├── Attribute.php │ ├── AttributeNotFound.php │ ├── Attributes.php │ ├── Edge.php │ ├── Exception.php │ ├── Graph.php │ └── Node.php └── tests ├── Resources └── Dockerfile └── phpDocumentor └── GraphViz └── Test ├── AttributeTest.php ├── AttributesTest.php ├── EdgeTest.php ├── GraphTest.php └── NodeTest.php /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpmd.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/phpmd.xml.dist -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/Attribute.php -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/AttributeNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/AttributeNotFound.php -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/Attributes.php -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/Edge.php -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/Exception.php -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/Graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/Graph.php -------------------------------------------------------------------------------- /src/phpDocumentor/GraphViz/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/src/phpDocumentor/GraphViz/Node.php -------------------------------------------------------------------------------- /tests/Resources/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/tests/Resources/Dockerfile -------------------------------------------------------------------------------- /tests/phpDocumentor/GraphViz/Test/AttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/tests/phpDocumentor/GraphViz/Test/AttributeTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/GraphViz/Test/AttributesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/tests/phpDocumentor/GraphViz/Test/AttributesTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/GraphViz/Test/EdgeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/tests/phpDocumentor/GraphViz/Test/EdgeTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/GraphViz/Test/GraphTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/tests/phpDocumentor/GraphViz/Test/GraphTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/GraphViz/Test/NodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpDocumentor/GraphViz/HEAD/tests/phpDocumentor/GraphViz/Test/NodeTest.php --------------------------------------------------------------------------------