Download the PHP package actived/graphphp without Composer

On this page you can find all versions of the php package actived/graphphp. 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 graphphp

GraphPHP

A PHP graph theory package that provides structures and algorithms for working with graphs.

Installation

You can install the package via Composer:

Features

Graph

The Graph class provides the foundation for working with undirected graphs in PHP. It includes methods for manipulating nodes, edges, and retrieving various properties of the graph.

Creating a Graph

Adding Nodes

Adding Edges

Removing Nodes and Edges

Nodes and edges can be removed from the graph:

Neighbors

Retrieve the neighbors of a given node:

Adjacency Matrix

Get the adjacency matrix of the graph:

Checking for Cycles

Determine if the graph contains a cycle:

Transitive Closure

Compute the transitive closure of the graph using the Floyd-Warshall algorithm:

Shortest Path

Compute the shortest path between two nodes using Dijkstra's algorithm:

String Representation

To get a string representation of the graph:

Note: The Graph class assumes an undirected graph. For directed graphs, refer to the DiGraph class documentation.

DiGraph (Directed Graph)

The DiGraph class extends the base Graph class and represents a directed graph. This means all edges in this graph have a direction, going from a source node to a target node.

Creating a Directed Graph

Adding Directed Edges

Only directed edges can be added to a directed graph:

Outgoing Neighbors

Retrieve the outgoing neighbors of a given node:

Predecessors

Retrieve the predecessors (nodes with directed edges pointing to the given node) of a node:

Bellman-Ford Shortest Path

Compute the shortest path between two nodes using the Bellman-Ford algorithm:

Checking for Cycles in Directed Graphs

Determine if the directed graph contains a cycle:

Adjacency Matrix for Directed Graphs

Get the adjacency matrix of the directed graph:

Note: The DiGraph class is specific to directed graphs. If you need an undirected graph, refer to the base Graph class documentation.

Directed Acyclic Graphs (DAG)

Create and manipulate directed acyclic graphs.

Transitive Reduction

Perform transitive reduction on a DAG.

Topological Sort

Get a topological ordering of the nodes in a DAG.

Roadmap

Contributing

If you have suggestions or improvements, feel free to submit a pull request or open an issue on the GitHub repository.

License

This package is open-sourced software licensed under the MIT license.


All versions of graphphp with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
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 actived/graphphp contains the following files

Loading the files please wait ....