Download the PHP package laravel-freelancer-nl/fluentaql without Composer

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

FluentAQL

Fluent PHP query builder for ArangoDB’s Query Language (AQL).

Github CI tests Scrutinizer Code Quality Code Coverage Total Downloads

Table of contents

  1. Use Cases
  2. Requirements
  3. Installation
  4. Usage

Purpose

Using a query builder mainly makes the life of a programmer much easier. You can write cleaner code and be quicker at it. Which of course comes at the cost of application speed.

If you need bleeding edge speed you will need to write your own queries.

The use of a query builder has both pros and cons. It is up to you to decide what you need.

Cons: 1) Sacrificing speed 3) You still need to understand ArangoDB, AQL and the 'schema' of your database. 2) Slight variations between the query builder API and the raw AQL output which may be confusing

Pros 1) Programmatically compose queries (e.g. search facets). 2) Easy query decomposition 3) Dry up your code. 4) Reduce AQL syntax bugs 5) Flexible expression input 6) IDE intellisense.

Requirements

FluentAQL ArangoDB PHP
1.x ^3.6 ^8.0

Installation

You know the drill:

Before you begin: safety first!

FluentAQL is a query builder that focuses on making your life as a developer easier while maintaining the strength and flexibility of AQL. It focuses on syntax checking of the provided expressions however that is not airtight if you don't bind user input.

Always bind user input.

Usage

First fire up a new query builder then fluently add AQL clauses on top.

Step 1: create a query builder:

Step 2: compose your query:

For Example:

Step 3: compile the query

The query builder now contains the query, binds and collections (*) for you to send to ArangoDB through a client.

The generated AQL for this query is:

(Always) bind user input

No matter what, never trust user input and always bind it.

Binds are registered in order and given an id. If you want to specify the bind name yourself you can add it:

Documentation

References & resources

ArangoDB

Related packages

Credits


All versions of fluentaql with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
ext-json Version *
spatie/ray Version ^1.34
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/fluentaql contains the following files

Loading the files please wait ....