PHPackages                             osmianski/not-implemented - 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/not-implemented

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

osmianski/not-implemented
=========================

A simple library that helps to never forget unimplemented parts of the application.

v0.1.0(3y ago)0301MITPHPPHP &gt;=8.1

Since Mar 28Pushed 3y ago1 watchersCompare

[ Source](https://github.com/osmianski/not-implemented)[ Packagist](https://packagist.org/packages/osmianski/not-implemented)[ Docs](https://github.com/osmianski/not-implemented)[ RSS](/packages/osmianski-not-implemented/feed)WikiDiscussions v0.1 Synced today

READMEChangelogDependenciesVersions (2)Used By (1)

`osmianski/not-implemented`
===========================

[](#osmianskinot-implemented)

A simple library that helps to never forget unimplemented parts of the application.

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

[](#installation)

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

```
composer require osmianski/not-implemented
```

Usage
-----

[](#usage)

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\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

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity44

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

Total

2

Last Release

1193d 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 (4 commits)")

---

Tags

NotImplemented

### Embed Badge

![Health badge](/badges/osmianski-not-implemented/health.svg)

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

PHPackages © 2026

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