├── .github └── FUNDING.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Edge.php ├── EdgeDirected.php ├── EdgeUndirected.php ├── Entity.php ├── Graph.php ├── Vertex.php └── Walk.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: clue 2 | custom: https://clue.engineering/support 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/composer.json -------------------------------------------------------------------------------- /src/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/Edge.php -------------------------------------------------------------------------------- /src/EdgeDirected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/EdgeDirected.php -------------------------------------------------------------------------------- /src/EdgeUndirected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/EdgeUndirected.php -------------------------------------------------------------------------------- /src/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/Entity.php -------------------------------------------------------------------------------- /src/Graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/Graph.php -------------------------------------------------------------------------------- /src/Vertex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/Vertex.php -------------------------------------------------------------------------------- /src/Walk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphp/graph/HEAD/src/Walk.php --------------------------------------------------------------------------------