Download the PHP package laravel-freelancer-nl/arangodb-php-client without Composer

On this page you can find all versions of the php package laravel-freelancer-nl/arangodb-php-client. 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 arangodb-php-client

ArangoClient - ArangoDB PHP client

Low level PHP client for ArangoDB. Supports PHP ^8.0.

Github CI tests Scrutinizer Code Quality Code Coverage Latest Version Total Downloads License

This client is a conduit to ArangoDB and back, so it doesn't make any presumptions on the returned data itself. JSON objects are decoded to POPO's. You can cast those to what you need in your ODM or project.

Install

Quickstart

Create a new client

Create a collection

Use the schemaManager to create a new collection.

Get documents from the collection

As there are no users yet in the above example this will yield an empty result. Note that this client does not have any preconceptions about the data structure and thus everything is returned as raw arrays.

config

The connector has a default configuration for a local ArangoDB instance at it's default port (8529).

AQL statements

To run AQL queries you prepare a query, execute it and fetch the results. Much like PHP's PDO extension.

Alternatively you can traverse over the statement itself to get the results one at a time.

Managers

You have access to several managers that allow you to perform specific tasks on your ArangoDB instance(s). Their functions can be called on the manager.

Admin manager

The admin manager manages administrative functions and information retrieval for the server/cluster.

Monitor manager

The monitor manager manages monitoring functions the server/cluster.

Schema manager

The schema manager manages all schema related operations.

Transaction manager

The transaction manager takes care of all transactions.

Documentation

1) ArangoDB PHP client 2) AQL query statements 3) Admin manager 4) Monitor manager 5Schema manager 1) Database schema 2) User schema 3) Collection schema 4) Index schema 5) Graph schema 6) View schema 7) Analyzer schema 6Transaction manager

Related packages


All versions of arangodb-php-client with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
ext-curl Version *
ext-json Version *
guzzlehttp/guzzle Version ^7.3
halaxa/json-machine Version ^1.0
spatie/data-transfer-object Version ^3.9
spatie/ray Version ^1.41
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 laravel-freelancer-nl/arangodb-php-client contains the following files

Loading the files please wait ....