sirmerdas/sparkle

A simple and flexible PHP Database Abstraction Layer for managing database interactions with ease.

v1.0.5 2025-03-31 14:21 UTC

This package is auto-updated.

Last update: 2025-04-04 22:18:59 UTC


README

Sparkle

Sparkle โ€“ A Lightweight Database Abstraction Layer for PHP

For full documentation, visit sparkle.sirmerdas.ir.

Latest Stable Version Total Downloads License PHP Version Require

Sparkle is a simple yet expressive Database Abstraction Layer (DAL) for PHP, highly inspired by Laravel's Eloquent. However, unlike Eloquent, which is a full-fledged Object-Relational Mapper (ORM), Sparkle is a lightweight query builder designed for direct interaction with PDO while keeping things minimal and efficient.

If you love Eloquent's fluent syntax but need something lighter and more flexible, Sparkle is the perfect fit.

๐Ÿ”ฅ Features

โœ… Fluent Query Builder โ€“ Write queries effortlessly using a clean and expressive syntax.
โœ… Lightweight & Fast โ€“ No heavy ORM, just raw performance with a structured API.
โœ… Built on PDO โ€“ Fully utilizes PHPโ€™s native PDO for database interactions.
โœ… Transactions Support โ€“ Handle database transactions with ease.
โœ… Error Handling & Logging โ€“ Catch SQL errors and log them when needed.
โœ… Raw Queries โ€“ Run custom SQL queries with parameter binding.
โœ… Flexible & Extensible โ€“ Easily integrates into any PHP project.

๐Ÿš€Installation

You can install Sparkle via Composer:

composer require sirmerdas/sparkle

Why Sparkle?

While Laravel Eloquent is a powerful ORM with advanced features like model relationships, mutators, and events, Sparkle is a much simpler DAL that focuses only on query building and execution. It's perfect for projects where you donโ€™t need the overhead of a full ORM but still want a structured and expressive way to interact with your database.