Download the PHP package simsoft/fliq without Composer

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

FLIQ

Fast, Lightweight, Independent Query Builder

Latest Version on Packagist License: MIT PHP 8.4+ PHPStan Level 8 [Tests]() Docs

A high-performance Active Record / ORM for MySQL, MariaDB, PostgreSQL, and SQLite. Zero framework dependencies, minimal footprint, maximum speed.

๐Ÿ“– Documentation ยท GitHub

Why FLIQ?

The name says it all โ€” Fast, Lightweight, Independent Query Builder.

When NOT to Choose FLIQ

For a detailed feature-by-feature comparison with Eloquent, Doctrine, Yii3, Cycle ORM, and Propel, see the Comparison Guide.

Requirements

Install

Quick Start

1. Configure Connection

2. Define a Model

3. Use It

Features


Zero-Allocation Query Building

The most common query patterns (where, in, like, between, orderBy, select) build SQL strings directly without creating intermediate objects. One ActiveQuery object handles everything.

Nested Eager Loading

Conditional Queries

JSON Column Queries

Multi-Column Conditions

Transactions

Row-Level Locking

Available: forUpdate(), forShare(), forUpdateNoWait(), forUpdateSkipLocked()

Soft Deletes & Timestamps

Model Events

Query Result Caching

Read/Write Connection Splitting

Development Tools

Model Generator

Generate Model files directly from your database schema โ€” no boilerplate by hand:

Or use it in PHP code:

The generator introspects your tables and creates models with $connection, $table, $fillable, $casts, PHPDoc properties, and auto-detected traits ( SoftDeletes, Timestamps).

Observer Generator

Generate Observer classes to organize your model lifecycle logic:

Or use it in PHP code:

The observer validates that the Model exists before generating, and creates method stubs for events like creating, updated, deleting, etc.

Documentation

๐Ÿ“– Read the full documentation

  1. Getting Started โ€” Connections, drivers, raw queries, DB facade, monitoring
  2. Query Builder โ€” Fluent API, conditions, joins, JSON, aggregation, scopes, unions
  3. Active Record โ€” Models, CRUD, casting, hooks, events, soft deletes, timestamps
  4. Relations โ€” hasOne, hasMany, via, viaTable, eager loading, whereHas
  5. Advanced Features โ€” Caching, pagination, global scopes, batch operations, read/write split
  6. Collections โ€” Lazy iteration, filter, map, reduce, indexBy, groupBy, batch processing
  7. Comparison โ€” Feature comparison with Eloquent, Doctrine, Yii3, Cycle, Propel
  8. Cheatsheet โ€” Quick reference for all common operations
  9. PostgreSQL Guide โ€” PG-specific features, production guidance, PgBouncer
  10. Model Generator โ€” CLI tool to scaffold models from database tables
  11. Observer Generator โ€” CLI tool to scaffold observer classes for models

License

FLIQ is licensed under the MIT License. See the LICENSE file for details.


All versions of fliq with dependencies

PHP Build Version
Package Version
Requires php Version ^8.4
ext-pdo Version *
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 simsoft/fliq contains the following files

Loading the files please wait ...