PHPackages                             hushulin/laravel-eloquent-rqlite - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. hushulin/laravel-eloquent-rqlite

ActiveLibrary[Database &amp; ORM](/categories/database)

hushulin/laravel-eloquent-rqlite
================================

larevel eloquent for rqlite

1.2.9(3y ago)3202[1 issues](https://github.com/hushulin/laravel-eloquent-rqlite/issues)[4 PRs](https://github.com/hushulin/laravel-eloquent-rqlite/pulls)MITPHPPHP ^7.4|^8.0

Since Sep 29Pushed 2y ago1 watchersCompare

[ Source](https://github.com/hushulin/laravel-eloquent-rqlite)[ Packagist](https://packagist.org/packages/hushulin/laravel-eloquent-rqlite)[ Docs](https://github.com/hushulin/laravel-eloquent-rqlite)[ RSS](/packages/hushulin-laravel-eloquent-rqlite/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (14)Versions (17)Used By (0)

larevel eloquent for rqlite
===========================

[](#larevel-eloquent-for-rqlite)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c614928629662fba9cd3b86f7def56bb55aa5ce4af08c5b6928783fc180e6507/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f68757368756c696e2f6c61726176656c2d656c6f7175656e742d72716c6974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/hushulin/laravel-eloquent-rqlite)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/17e134e6957b044e080eb4dfde164f3083962014ddd877d0d8fb3182a146c941/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f68757368756c696e2f6c61726176656c2d656c6f7175656e742d72716c6974652f466978253230504850253230636f64652532307374796c652532306973737565733f6c6162656c3d636f64652532307374796c65)](https://github.com/hushulin/laravel-eloquent-rqlite/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/d19d90bd5588bef8417f3150f2bed27421c794afeb8946919fed5014d9d54bae/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f68757368756c696e2f6c61726176656c2d656c6f7175656e742d72716c6974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/hushulin/laravel-eloquent-rqlite)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Support us
----------

[](#support-us)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require hushulin/laravel-eloquent-rqlite
```

lumen framework add below to bootstrap/app.php

```
$app->register(Hushulin\LaravelEloquentRqlite\LaravelEloquentRqliteServiceProvider::class);
```

lumen framework add config to config/database.php

```
'connections' => [

        'rqlite' => [
            'driver' => 'rqlite',
            'database' => env('DB_DATABASE', ':memory:'),
            'host' => env('DB_HOST', '127.0.0.1'),
            'username' => env('DB_USERNAME', ''),
            'password' => env('DB_PASSWORD', ''),
        ],

        'sqlite' => [
            'driver' => 'sqlite',
            'database' => env('DB_DATABASE', database_path('database.sqlite')),
            'prefix' => env('DB_PREFIX', ''),
        ],
        // ...
   ]
```

You can use eloquent model extend `\Hushulin\LaravelEloquentRqlite\Model\RqliteModel` as base model.

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="laravel-eloquent-rqlite-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-eloquent-rqlite-config"
```

This is the contents of the published config file:

```
return [
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="laravel-eloquent-rqlite-views"
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [hushulin](https://github.com/hushulin)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

12

Last Release

1307d ago

PHP version history (2 changes)v1.0PHP ^8.1

1.2.0PHP ^7.4|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/844adb46276ae11548e44c212f2fbf938cf8b577dc60740dab1bfd1533d53356?d=identicon)[hushulin](/maintainers/hushulin)

---

Top Contributors

[![hushulin](https://avatars.githubusercontent.com/u/4876973?v=4)](https://github.com/hushulin "hushulin (36 commits)")[![729380388](https://avatars.githubusercontent.com/u/70426209?v=4)](https://github.com/729380388 "729380388 (6 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")

---

Tags

laravelhushulinlaravel-eloquent-rqlite

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/hushulin-laravel-eloquent-rqlite/health.svg)

```
[![Health](https://phpackages.com/badges/hushulin-laravel-eloquent-rqlite/health.svg)](https://phpackages.com/packages/hushulin-laravel-eloquent-rqlite)
```

###  Alternatives

[laravel-doctrine/orm

An integration library for Laravel and Doctrine ORM

8425.3M87](/packages/laravel-doctrine-orm)[dyrynda/laravel-model-uuid

This package allows you to easily work with UUIDs in your Laravel models.

4802.8M8](/packages/dyrynda-laravel-model-uuid)[spatie/laravel-model-flags

Add flags to Eloquent models

4301.1M1](/packages/spatie-laravel-model-flags)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[spatie/laravel-sql-commenter

Add comments to SQL queries made by Laravel

1931.4M1](/packages/spatie-laravel-sql-commenter)[spatie/laravel-deleted-models

Automatically copy deleted records to a separate table

409109.8k4](/packages/spatie-laravel-deleted-models)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
