PHPackages                             innmind/installation-monitor - 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. innmind/installation-monitor

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

innmind/installation-monitor
============================

Simple socket to accumulate and dispatch system events

3.1.0(5y ago)05862MITPHPPHP ~7.4|~8.0CI failing

Since Sep 29Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/Innmind/InstallationMonitor)[ Packagist](https://packagist.org/packages/innmind/installation-monitor)[ Docs](http://github.com/Innmind/InstallationMonitor)[ RSS](/packages/innmind-installation-monitor/feed)WikiDiscussions develop Synced yesterday

READMEChangelogDependencies (10)Versions (13)Used By (2)

Installation Monitor
====================

[](#installation-monitor)

[![Build Status](https://github.com/Innmind/InstallationMonitor/workflows/CI/badge.svg?branch=master)](https://github.com/Innmind/InstallationMonitor/actions?query=workflow%3ACI)[![codecov](https://camo.githubusercontent.com/a59ae8b90c3e8f8fd7565502e3094094cdf37300138fec2e47ef81ca75901220/68747470733a2f2f636f6465636f762e696f2f67682f496e6e6d696e642f496e7374616c6c6174696f6e4d6f6e69746f722f6272616e63682f646576656c6f702f67726170682f62616467652e737667)](https://codecov.io/gh/Innmind/InstallationMonitor)[![Type Coverage](https://camo.githubusercontent.com/8df2f71d5f3981fa9aecfaf20c5893dbb9cffbd04be91230f8b74e48ab12054e/68747470733a2f2f73686570686572642e6465762f6769746875622f496e6e6d696e642f496e7374616c6c6174696f6e4d6f6e69746f722f636f7665726167652e737667)](https://shepherd.dev/github/Innmind/InstallationMonitor)

Tool to listen and redispatch events from/to other applications.

This is useful to let applications configure themselves when installing them. Take for example an application B that depends on an application A, A can emit an event to this tool and when the installation of B starts it can ask this tool to send it all the events it has recorded.

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

[](#installation)

```
composer require innmind/installation-monitor
```

Usage
-----

[](#usage)

First step is to start the server that will aggregate the events:

```
installation-monitor oversee --daemon
```

Then from your application you can send an event like so :

```
use function Innmind\InstallationMonitor\bootstrap;
use Innmind\InstallationMonitor\Event;
use Innmind\Immutable\{
    Map,
    Sequence,
};

$client = bootstrap()['client']['ipc']();
$client->send(
    new Event(
        new Event\Name('foo'),
        $payload = Map::of('string', 'scalar|array')
    ),
    new Event(
        new Event\Name('bar'),
        $payload = Map::of('string', 'scalar|array')
    )
    // etc...
);
// or
$client->events(); // Sequence all the events recorded by the server
```

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance56

Moderate activity, may be stable

Popularity13

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity74

Established project with proven stability

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

Recently: every ~163 days

Total

11

Last Release

1913d ago

Major Versions

1.2.0 → 2.0.02019-02-17

2.2.0 → 3.0.02020-03-28

PHP version history (3 changes)1.0.0PHP ~7.2

3.0.0PHP ~7.4

3.1.0PHP ~7.4|~8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/851425?v=4)[Baptiste Langlade](/maintainers/Baptouuuu)[@Baptouuuu](https://github.com/Baptouuuu)

---

Top Contributors

[![Baptouuuu](https://avatars.githubusercontent.com/u/851425?v=4)](https://github.com/Baptouuuu "Baptouuuu (74 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/innmind-installation-monitor/health.svg)

```
[![Health](https://phpackages.com/badges/innmind-installation-monitor/health.svg)](https://phpackages.com/packages/innmind-installation-monitor)
```

PHPackages © 2026

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