PHPackages                             smartcode/turbokit - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. smartcode/turbokit

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

smartcode/turbokit
==================

High-performance Laravel package for massive data &amp; developer productivity

1.0.1(7mo ago)05MITPHPPHP &gt;=8.1

Since Oct 9Pushed 7mo agoCompare

[ Source](https://github.com/sadaqat867/turbokit)[ Packagist](https://packagist.org/packages/smartcode/turbokit)[ RSS](/packages/smartcode-turbokit/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (2)Versions (3)Used By (0)

TurboKit
========

[](#turbokit)

**TurboKit** is a Laravel package by **GSS Technology**, designed to optimize database operations, caching, bulk inserts, and provide convenient helper methods for your projects. Perfect for handling large datasets efficiently without memory issues.

---

Features
--------

[](#features)

- **TurboModel:** Optimized Eloquent model with caching and chunked queries.
- **TurboQuery:** Fast query handling with smart caching.
- **CacheLayer:** Easy cache management (remember, forget, flush).
- **Bulk insert:** Efficiently insert large datasets.
- **TurboKit Facade:** Access all features with a single line `use TurboKit;`.
- **Helpers:** Quick success/error response formatting.

---

Requirements
------------

[](#requirements)

- PHP &gt;= 8.1
- Laravel &gt;= 10.x

---

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

[](#installation)

Using Composer:

```
composer require smartcode/turbokit:dev-main
```

If using GitHub directly:

```
"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/sadaqat867/turbokit.git"
    }
]
```

Then:

```
composer require smartcode/turbokit:dev-main
```

---

Usage
-----

[](#usage)

Import the facade:

```
use TurboKit;
```

### TurboModel Example:

[](#turbomodel-example)

```
// Retrieve all records with caching
$users = TurboKit::turboModel(User::class)->turboAll();

// Chunk processing
TurboKit::turboModel(User::class)->turboChunk(1000, function($chunk){
    // process each chunk
});
```

### TurboQuery Example:

[](#turboquery-example)

```
$users = TurboKit::turboQuery(User::query()->where('status', 'active'))->cache('active_users');
```

### Cache Helpers:

[](#cache-helpers)

```
TurboKit::forgetCache('active_users');
```

### Bulk Insert:

[](#bulk-insert)

```
$data = [
    ['name' => 'John', 'phone' => '12345'],
    ['name' => 'Jane', 'phone' => '67890'],
];

TurboKit::insertBulk($data, User::class);
```

### Response Helper:

[](#response-helper)

```
return TurboKit::message("Data saved successfully!", $data);
```

---

Contribution
------------

[](#contribution)

Feel free to fork, submit issues or create pull requests.

---

License
-------

[](#license)

MIT License

---

**© GSS Technology**

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance65

Regular maintenance activity

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~52 days

Total

2

Last Release

214d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/213580097?v=4)[sadaqat867](/maintainers/sadaqat867)[@sadaqat867](https://github.com/sadaqat867)

---

Top Contributors

[![sadaqat867](https://avatars.githubusercontent.com/u/213580097?v=4)](https://github.com/sadaqat867 "sadaqat867 (5 commits)")

### Embed Badge

![Health badge](/badges/smartcode-turbokit/health.svg)

```
[![Health](https://phpackages.com/badges/smartcode-turbokit/health.svg)](https://phpackages.com/packages/smartcode-turbokit)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

43311.1k](/packages/venturedrake-laravel-crm)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1235.9k20](/packages/fleetbase-core-api)

PHPackages © 2026

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