PHPackages                             osmianski/laravel-helper - 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. osmianski/laravel-helper

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

osmianski/laravel-helper
========================

Helper classes and functions for Laravel development

v0.1.1(3y ago)014MITPHP

Since Mar 7Pushed 3y ago1 watchersCompare

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

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

`laravel-helper`
================

[](#laravel-helper)

Helper classes and functions for Laravel.

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

[](#installation)

Add the Composer package to your project using the following command:

```
composer require osmianski/laravel-helper
```

Usage
-----

[](#usage)

Never forget unimplemented parts
--------------------------------

[](#never-forget-unimplemented-parts)

Have you even forgotten to return to a comment like this one?

```
function foo(?Bar $bar): void {
    // TODO: handle nulls
    ...
}

```

Previously, I had those, too.

Not anymore.

I found that throwing the [`NotImplemented`](src/Exceptions/NotImplemented.php) exception instead of a mere comment makes you to pay off this bit of technical debt right away:

```
use Osmianski\Helper\Exceptions\NotImplemented;
...

function foo(?Bar $bar): void {
    if (!$bar) {
        throw new NotImplemented();
    }

    ...
}

```

Only recently, I have found a really nice feature in PhpStorm called *Exception Breakpoints*. The idea is that whenever a specified exception is thrown, the debugger stops at the line that throws the exception.

And it's a perfect match for the `NotImplemented` exception. After configuring it, the debugger stops anytime when the execution hits a feature, or a special case, that is not implemented yet.

Configure it in `Run -> View Breakpoints` by pressing `+ -> PHP Exception Breakpoints`, entering the full exception class name, and pressing OK:

[![Exception Breakpoints](docs/exception-breakpoints.png)](docs/exception-breakpoints.png)

License
-------

[](#license)

This package is open-sourced software licensed under the [MIT](LICENSE.md) license.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 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 ~6 days

Total

3

Last Release

1149d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/70505ad13b7a3f67344988bd0f17f6a5c6bc29919300c7e12d937882eebc3080?d=identicon)[osmianski](/maintainers/osmianski)

---

Top Contributors

[![osmianski](https://avatars.githubusercontent.com/u/522822?v=4)](https://github.com/osmianski "osmianski (3 commits)")

---

Tags

laravelhelper

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/osmianski-laravel-helper/health.svg)

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

###  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)[mckenziearts/laravel-command

A simple Laravel package to provide artisan new commands

321.2k](/packages/mckenziearts-laravel-command)

PHPackages © 2026

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