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(5mo ago)05MITPHPPHP &gt;=8.1

Since Oct 9Pushed 5mo agoCompare

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

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

33

—

LowBetter than 75% of packages

Maintenance70

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

168d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/32c086497d6c716035fb5d8bbd73327d0801454b5117b779e393af25625f35d6?d=identicon)[sadaqat867](/maintainers/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

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M213](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M862](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)[mrmarchone/laravel-auto-crud

Laravel Auto CRUD helps you streamline development and save time.

28711.8k2](/packages/mrmarchone-laravel-auto-crud)

PHPackages © 2026

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