PHPackages                             rjchauhan/laravel-finer - 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. rjchauhan/laravel-finer

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

rjchauhan/laravel-finer
=======================

Laravel multi-purpose helpers

11.2.0(1y ago)22.4k3[4 PRs](https://github.com/rjchauhan/laravel-finer/pulls)MITPHPPHP ^8.2CI failing

Since Mar 15Pushed 1y agoCompare

[ Source](https://github.com/rjchauhan/laravel-finer)[ Packagist](https://packagist.org/packages/rjchauhan/laravel-finer)[ Docs](https://github.com/rjchauhan/laravel-finer)[ RSS](/packages/rjchauhan-laravel-finer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (9)Versions (18)Used By (0)

Laravel Finer
=============

[](#laravel-finer)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2bbea11ba40b1a55d0039e5654eb99542c772edf62598d0e53043fa726bf29bc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726a6368617568616e2f6c61726176656c2d66696e65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rjchauhan/laravel-finer)[![Total Downloads](https://camo.githubusercontent.com/8a9a8edea9c0bdb204db5371786e11e68739a6ac24825698787e04da8cb99800/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726a6368617568616e2f6c61726176656c2d66696e65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rjchauhan/laravel-finer)

This package introduces set of multi-purpose helper classes that provides a new way of organising the logic of your Laravel applications.

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

[](#installation)

You can install the package via composer:

```
$ composer require rjchauhan/laravel-finer
```

Usage
-----

[](#usage)

Action
------

[](#action)

Keep your Laravel applications DRY with single action classes.

```
use Rjchauhan\LaravelFiner\Action\Action;

class DeactivateUser extends Action
{
    protected function canBePerformed()
    {
        return $this->model->is_active;
    }

    protected function perform()
    {
        $this->model->is_active = false;

        $this->model->save();
    }
}
```

#### Usage

[](#usage-1)

```
class UserActivationController extends Controller
{
    public function deactivate(User $user)
    {
        $user = (new DeactivateUser($user))->execute();

        return UserResource::make($user);
    }
}
```

Change log
----------

[](#change-log)

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

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

If you discover any security related issues, please email [Raviraj Chauhan](rjchauhan8427@gmail.com) instead of using the issue tracker.

Credits
-------

[](#credits)

- [Raviraj Chauhan](https://github.com/rjchauhan)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 54.1% 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 ~145 days

Recently: every ~57 days

Total

12

Last Release

652d ago

Major Versions

1.0.0 → 8.0.02020-10-05

8.3.1 → 10.0.02023-12-04

10.0.2 → 11.0.02024-05-09

PHP version history (5 changes)1.0.0PHP ^7.2

8.3.0PHP ^7.2|^8.1

10.0.0PHP &gt;=7.3.0

10.0.2PHP ^7.2 || ^8.0

11.1.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/36b8dab0ed1c5cb27dbec317a35f4bdb907d4be45fe804291ecff89114f22a4d?d=identicon)[rjchauhan](/maintainers/rjchauhan)

---

Top Contributors

[![rjchauhan](https://avatars.githubusercontent.com/u/8499250?v=4)](https://github.com/rjchauhan "rjchauhan (20 commits)")[![PoojaJadav](https://avatars.githubusercontent.com/u/56014892?v=4)](https://github.com/PoojaJadav "PoojaJadav (10 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![ShubhamJadavSj](https://avatars.githubusercontent.com/u/79038365?v=4)](https://github.com/ShubhamJadavSj "ShubhamJadavSj (2 commits)")

---

Tags

laravellaravel finerrjchauhan

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/rjchauhan-laravel-finer/health.svg)

```
[![Health](https://phpackages.com/badges/rjchauhan-laravel-finer/health.svg)](https://phpackages.com/packages/rjchauhan-laravel-finer)
```

###  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)[erlandmuchasaj/laravel-gzip

Gzip your responses.

40129.3k2](/packages/erlandmuchasaj-laravel-gzip)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[nedwors/navigator

A Laravel package to ease defining navigation menus

433.1k](/packages/nedwors-navigator)

PHPackages © 2026

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