sirmerdas / sparkle
A simple and flexible PHP Database Abstraction Layer for managing database interactions with ease.
Requires
- php: ^8.3
- monolog/monolog: ^3.9
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.73
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^12.0
- rector/rector: ^2.0
This package is auto-updated.
Last update: 2025-04-04 22:18:59 UTC
README
Sparkle โ A Lightweight Database Abstraction Layer for PHP
For full documentation, visit sparkle.sirmerdas.ir.
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.