PHPackages                             d-scribe/laraquick - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. d-scribe/laraquick

ActiveLibrary[HTTP &amp; Networking](/categories/http)

d-scribe/laraquick
==================

A collection of classes to be extended/used in laravel applications for quick development

v6.3.11(1y ago)371.9k21MITPHPPHP &gt;=8.2CI failing

Since Sep 25Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/ezra-obiwale/laraquick)[ Packagist](https://packagist.org/packages/d-scribe/laraquick)[ RSS](/packages/d-scribe-laraquick/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (3)Versions (189)Used By (1)

laraquick
=========

[](#laraquick)

A collection of classes to be extended/used in laravel applications for quick development.

Introduction
------------

[](#introduction)

The library contains traits with well documented methods that should be used by controllers and models to enhance coding speed.

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

[](#installation)

```
composer require d-scribe/laraquick

```

Dependencies
------------

[](#dependencies)

### &gt;= v1.\*

[](#-v1)

- PHP &gt;= 7.0
- Laravel - ~5.5
- Guzzle - ~6.0

### v0.\*

[](#v0)

- PHP &gt;= 5.6.0
- Laravel - 5.4.\*
- Laravel Fractal - ^4.0
- Guzzle - ~6.0

Example
-------

[](#example)

An example controller for a `Book` model is:

```
use App\Book;
use Laraquick\Controllers\Traits\Api;

class BookController extends Controller {

    use Api;

    protected function model(): string
    {
        return Book::class;
    }

    // if you have a custom form request class
    protected function validationRequest(): string
    {
        return BookRequest::class;
    }

    // if you don't have a custom form request class
    protected function validationRules(array $data, $id = null): array
    {
        return [
            'title' => 'required|max:200',
            'author' => 'required|max:50',
            'genre' => 'required'
        ];
    }
}
```

And with just the above, the controller would take care of listing (w/ pagination), and all `CRUD` operations and give the right JSON responses.

```
Route::httpResource('books', BookController::class);
```

### What if Web and not API?

[](#what-if-web-and-not-api)

Oh, that's covered too with the version 1.5 and above. Just swap out the `Api`trait for its `Web` counterpart, and you're good.

Documentation
-------------

[](#documentation)

[Get a full walk-through](http://laraquick.readme.io)

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

[](#contribution)

Contributions are absolutely welcome. Create a PR and I'll as swiftly as possible merge it up.

###  Health Score

56

—

FairBetter than 97% of packages

Maintenance69

Regular maintenance activity

Popularity29

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity95

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 99.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 ~17 days

Recently: every ~117 days

Total

185

Last Release

44d ago

Major Versions

v3.x-dev → v4.3.32018-12-20

v4.x-dev → v5.0.0-alpha2019-06-10

v5.0.0 → v6.0.02023-07-12

v6.3.11 → v7.x-dev2026-05-21

v7.x-dev → v13.x-dev2026-05-21

PHP version history (3 changes)v0.1PHP &gt;=5.6.0

v1.1PHP &gt;=7.0

v6.0.0PHP &gt;=8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/e38a65ae3f79888b4c33c06ba9958594ed7fb7bcac3d87d7b9f2f8f99eb20e12?d=identicon)[ezraobiwale](/maintainers/ezraobiwale)

---

Top Contributors

[![ezra-obiwale](https://avatars.githubusercontent.com/u/2762623?v=4)](https://github.com/ezra-obiwale "ezra-obiwale (345 commits)")[![Dylan-DPC](https://avatars.githubusercontent.com/u/99973273?v=4)](https://github.com/Dylan-DPC "Dylan-DPC (1 commits)")

---

Tags

apiguzzlelaravelphpquickquickstartrapidrestapiweblaravelcontrollertraitsquick

### Embed Badge

![Health badge](/badges/d-scribe-laraquick/health.svg)

```
[![Health](https://phpackages.com/badges/d-scribe-laraquick/health.svg)](https://phpackages.com/packages/d-scribe-laraquick)
```

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[dreamfactory/df-core

DreamFactory(tm) Core Components

1652.1k38](/packages/dreamfactory-df-core)

PHPackages © 2026

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