Download the PHP package quellabs/objectquel without Composer

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

ObjectQuel

Latest Version Downloads

A PHP ORM with its own query language. ObjectQuel uses the Data Mapper pattern and a declarative syntax inspired by QUEL to express entity queries at the domain level — not the table level.

The engine resolves entity relationships, decomposes the query into optimized SQL, and hydrates the results. You write intent; ObjectQuel handles the mechanics.

What the query language can do that others can't

Most ORM query languages are SQL with different syntax. ObjectQuel's abstraction layer sits above SQL, which lets it do things that aren't possible in DQL, Eloquent, or raw query builders:

Pattern matching and regex in where clauses:

The equivalent in Doctrine requires $qb->expr()->like() or a raw REGEXP call. In Eloquent you'd write whereRaw('name REGEXP ?', [...]). ObjectQuel treats patterns as first-class query expressions.

Full-text search with boolean operators and weighting:

No raw SQL, no engine-specific syntax. The query engine translates this to the appropriate full-text implementation for your database.

Hybrid data sources — database + JSON in one query:

ObjectQuel can join database entities with JSON files in a single query — the engine handles the cross-source matching. Neither Doctrine nor Eloquent can do this. You'd query the database, load the JSON separately, and merge results in PHP. ObjectQuel also supports JSONPath prefiltering to extract nested structures before the query runs, keeping memory usage low on large files.

Existence checks as expressions:

Automatic query decomposition:

Complex queries are split into optimized sub-tasks by the engine rather than sent as a single monolithic SQL statement. This means ObjectQuel can optimize execution paths that a single SQL query cannot express efficiently.

Comparison

A multi-entity query with filtering and relationship traversal:

ObjectQuel:

Doctrine DQL:

Eloquent:

The difference becomes more pronounced with regex filtering, existence checks, hybrid sources, and multi-relationship traversals — operations that require raw SQL or post-processing in other ORMs.

Installation

Supports MySQL, PostgreSQL, SQLite, and SQL Server through CakePHP's database abstraction layer (used for connection handling and SQL execution only — ObjectQuel implements its own query engine, Data Mapper, and entity management).

Quick start

ORM capabilities

ObjectQuel is a full Data Mapper ORM, not just a query language:

CLI tooling

ObjectQuel ships with Sculpt, a CLI tool for entity and schema management:

make:entity-from-table is particularly useful when adopting ObjectQuel in an existing project — point it at your tables and get annotated entities without writing them by hand.

Framework integration

ObjectQuel works standalone or with the Canvas framework. The quellabs/canvas-objectquel package provides automatic service discovery, dependency injection, and Sculpt CLI integration within Canvas.

For other frameworks, configure the EntityManager directly — it has no framework dependencies.

Documentation

Full query language reference, entity mapping guide, and architecture docs: objectquel.com/docs

Support

If ObjectQuel saves you time, consider sponsoring development.

License

MIT


All versions of objectquel with dependencies

PHP Build Version
Package Version
Requires php Version >=8.3
ext-json Version *
ext-pdo Version *
robmorgan/phinx Version ^0.16
cakephp/database Version ^5.3
softcreatr/jsonpath Version ^0.8
quellabs/contracts Version ^1
quellabs/support Version ^1
quellabs/signal-hub Version ^1
quellabs/annotation-reader Version ^1
quellabs/sculpt Version ^1
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 quellabs/objectquel contains the following files

Loading the files please wait ...