Download the PHP package php-architecture-kit/graph without Composer

On this page you can find all versions of the php package php-architecture-kit/graph. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package graph

php-architecture-kit/graph

Framework-agnostic graph library for PHP applications. It provides a consistent API for building graphs with vertices and directed/undirected edges, traversing graph elements with visitors, and calculating shortest paths between vertices.

Features

Installation

Quick Start

Graph Configuration

Use GraphConfig to control validation behavior and edge weights.

Navigation and Context API

GraphNavigator is the main read/query entry point.

Selecting Vertices and Edges

Working with Context Objects

Traversal (Visitor Pattern)

The traversal module supports multiple visitors and three control actions:

Shortest Path

Shortest path search is available via GraphNavigator::shortestPathTo(...) and uses bidirectional search internally.

Returns:

Edge Weights

If weightConfig is enabled, you can define and read named weights per edge.

API Reference

GraphNavigator

Method Description
selectVertex(VertexId $id): VertexContext Select one vertex as context
selectVertices(?callable $filter = null): VertexContext[] Select many vertices with optional filter
selectEdge(EdgeId $id): EdgeContext Select one edge as context
selectEdges(?callable $filter = null): EdgeContext[] Select many edges with optional filter
traverseVertices(array $visitors, ?callable $filter = null): VertexTraversalResult Traverse vertices with visitors
traverseEdges(array $visitors, ?callable $filter = null): EdgeTraversalResult Traverse edges with visitors

VertexContext

Method Description
edges(?callable $filter = null): EdgeContext[] Get incident edges for this vertex
neighbors(?callable $edgeFilter = null, ?callable $filter = null): VertexContext[] Get neighboring vertices

EdgeContext

Method Description
isDirected(): bool Check if edge is directed
isUndirected(): bool Check if edge is undirected
u(): VertexInterface Resolve first endpoint
v(): VertexInterface Resolve second endpoint
weights(): EdgeWeights Resolve edge weights (when configured)

Traversal Interfaces

Interface Method
VertexVisitorInterface visit(VertexInterface $vertex): VisitResult
EdgeVisitorInterface visit(EdgeInterface $edge): VisitResult

License

MIT


All versions of graph with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
php-architecture-kit/uuid Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package php-architecture-kit/graph contains the following files

Loading the files please wait ...