Download the PHP package graphp/graphviz without Composer

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

graphp/graphviz

CI status

GraphViz graph drawing for the mathematical graph/network library GraPHP.

Development version: This branch contains the code for the upcoming 1.0 release. For the code of the current stable 0.2 release, check out the 0.2.x branch.

The upcoming 1.0 release will be the way forward for this package. However, we will still actively support 0.2.x for those not yet on the latest version. See also installation instructions for more details.

The library supports visualizing graph images, including them into webpages, opening up images from within CLI applications and exporting them as PNG, JPEG or SVG file formats (among many others). Because graph drawing is a complex area on its own, the actual layouting of the graph is left up to the excelent GraphViz "Graph Visualization Software" and we merely provide some convenient APIs to interface with GraphViz.

Table of contents

Quickstart examples

Once installed, let's build and display a sample graph:

``

The above code will open your default image viewer with the following image:

See also the examples.

Attributes

GraphViz supports a number of attributes on the graph instance itself, each vertex instance (GraphViz calls these "nodes") and edge instance. Any of these GraphViz attributes are supported by this library and have to be assigned using GraPHP attributes as documented below.

For the full list of all GraphViz attributes, please refer to the GraphViz documentation.

Note that all attributes use UTF-8 encoding (Unicode) and will be quoted and escaped by default, so a ö and > will appear as-is and will not be interpreted as HTML. See also HTML-like labels below for more details.

Graph attributes

GraphViz supports a number of attributes on the graph instance itself. Any of these GraphViz attributes are supported by this library and have to be assigned on the graph instance with the graphviz.graph. prefix like this:

Note how this uses the graphviz.graph. prefix and not just graphviz.. This is done for consistency reasons with respect to default vertex and edge attributes as documented below.

For example, the rankdir attribute can be used to change the orientation to horizontal mode (left to right) like this:

See also the examples.

Additionally, this library accepts an optional graphviz.name attribute that will be used as the name (or ID) for the root graph object in the DOT output if given. Unless explicitly assigned, this will be omitted by default. It is common to assign a G here, but usually there should be no need to assign this. Among others, this may be used as the title or tooltip in SVG output.

Vertex attributes

GraphViz supports a number of attributes on each vertex instance (GraphViz calls these "node" attributes). Any of these GraphViz attributes are supported by this library and have to be assigned on the respective vertex instance with the graphviz. prefix like this:

Additionally, GraphViz also supports default attributes for all vertices. Any of these GraphViz attributes are supported by this library and have to be assigned on the graph instance with the graphviz.node. prefix like this:

These default attributes can be overriden on each vertex instance by explicitly assigning the same attribute on the respective vertex instance like this:

Note how this uses the graphviz.node. prefix and not graphviz.vertex.. This is done for consistency reasons with respect to how GraphViz assigns these default attributes in its DOT output.

Edge attributes

GraphViz supports a number of attributes on each edge instance. Any of these GraphViz attributes are supported by this library and have to be assigned on the respective edge instance with the graphviz. prefix like this:

Additionally, GraphViz also supports default attributes for all edges. Any of these GraphViz attributes are supported by this library and have to be assigned on the graph instance with the graphviz.edge. prefix like this:

These default attributes can be overriden on each edge instance by explicitly assigning the same attribute on the respective edge instance like this:

Labels

Vertex labels

By default, GraphViz will always render the vertex ID as the label. If you do not assign an explicit id attribute to a vertex, this library will automatically assign a vertex ID starting at 1 in the DOT output and GraphViz will automatically render this vertex ID as the label. The following example will automatically assign 1 and 2 as the label:

If you assign an id attribute to a vertex, this library will automatically use it as the vertex ID in the DOT output and GraphViz will automatically render this vertex ID as the label. The following example will automatically assign blue as the label:

If you assign a balance attribute to a vertex, this library will automatically include a label attribute that appends the balance value in parenthesis. The following example will automatically assign blue (+10) as the label:

You can use vertex attributes to explicitly assign a custom label attribute. Note that any balance value will still be appended like in the previous example.

Note that all attributes will be quoted and escaped by default, so a > will appear as-is and will not be interpreted as HTML. See also HTML-like labels below for more details.

Also note that you should either define no vertex IDs at all or all vertex IDs. If you only define some vertex IDs, the automatic numbering may yield a vertex ID that is already used explicitly and overwrite some of its settings.

Edge labels

By default, GraphViz will not render any label on an edge:

If you assign a flow, capacity or weight attribute to an edge, this library will automatically include a label attribute that includes these values. The following example will automatically assign 100 as the label for the weighted edge:

The following example will automatically assign 4/10 as the label for an edge with both flow and maximum capacity set:

The following example will automatically assign 4/∞/100 as the label for a weighted edge with a flow and unlimited capacity:

You can use edge attributes to explicitly assign any custom label attribute. Note that any flow, capacity or weight value will still be appended like in the previous examples.

HTML-like labels

Note that all attributes will be quoted and escaped by default, so a > will appear as-is and will not be interpreted as HTML. GraphViz also supports HTML-like labels that support a subset of HTML features.

GraphViz requires any HTML-like label to be wrapped in < and > and only supports a limited subset of HTML features as documented above. In order to prevent automatic quoting and escaping, all HTML-like attribute values need to be passed with a trailing _html in the attribute name like this:

See also the examples.

Record-based nodes

Note that all attributes will be quoted and escaped by default, so a > will appear as-is and will not be interpreted as HTML. Similar to the above HTML-like labels, GraphViz also supports simple record-based nodes using the record and Mrecord shape attributes and structured label attributes.

GraphViz requires any record-based node label to be quoted, but uses special syntax to mark record fields and optional port names. In order to prevent automatic quoting and escaping, all record-based attribute values need to be passed with a trailing _record in the attribute name like this:

See also the examples.

Install

The recommended way to install this library is through Composer. New to Composer?

Once released, this project will follow SemVer. At the moment, this will install the latest development version:

See also the CHANGELOG for details about version upgrades.

This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 7+. It's highly recommended to use PHP 7+ for this project.

The graph drawing feature is powered by the excellent GraphViz software. This means you'll have to install GraphViz (dot executable). The Graphviz homepage includes complete installation instructions for most common platforms, users of Debian/Ubuntu-based distributions may simply invoke:

Tests

To run the test suite, you first need to clone this repo and then install all dependencies through Composer:

To run the test suite, go to the project root and run:

License

This project is released under the permissive MIT license.


All versions of graphviz with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
clue/graph Version ~0.9.0|~0.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 graphp/graphviz contains the following files

Loading the files please wait ....