adaiasmagdiel / rubik
A lightweight and intuitive ORM for PHP that turns SQLite database complexity into simplicity.
Requires (Dev)
- pestphp/pest: ^3.7
README
Rubik ORM is a lightweight Object-Relational Mapping (ORM) designed specifically for SQLite databases. Inspired by the simplicity and structure of a Rubik's Cube, Rubik aims to provide an intuitive and straightforward way to interact with SQLite while supporting both Active Record and Query Builder patterns for CRUD operations.
Description
Rubik ORM is built to be simple yet complete, offering essential features for SQLite database interactions. It allows developers to:
- CRUD Operations: Create, Read, Update, and Delete records using intuitive methods.
- Active Record Pattern: Define models with database mappings and perform operations directly on instances.
- Query Builder: Construct complex SQL queries fluently with methods like
where
,select
,limit
, andwhereIn
. - SQLite-Specific Optimization: Built for SQLite's ecosystem, ensuring compatibility and performance.
Installation
Install via Composer:
composer require adaiasmagdiel/rubik
Usage
The documentation is currently under development, but the core functionality is already operational. For now, you can:
- Define Models: Extend the base model class and define table names and primary keys.
- Active Record: Use methods like
save()
,delete()
, andfind()
directly on model instances. - Query Builder: Build queries using methods like
where()
,select()
, andexec()
.
Check the code in the repository for implementation details.
License
Rubik ORM is licensed under the GNU General Public License v3.0 (GPL-3.0).
See the LICENSE and COPYRIGHT files for more details.