PHPackages                             jacksunny/eventprocess - 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. [Framework](/categories/framework)
4. /
5. jacksunny/eventprocess

ActiveLibrary[Framework](/categories/framework)

jacksunny/eventprocess
======================

simple event process plugin including dispatching on tree for laravel framework

v1.0(8y ago)020PHP

Since Jun 9Pushed 8y ago1 watchersCompare

[ Source](https://github.com/jacksunny2020/eventprocess)[ Packagist](https://packagist.org/packages/jacksunny/eventprocess)[ RSS](/packages/jacksunny-eventprocess/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

eventprocess
============

[](#eventprocess)

simple event process plugin including dispatching on tree for laravel framework

How to install and configurate package
======================================

[](#how-to-install-and-configurate-package)

1. install the laravel package composer require "jacksunny/eventprocess":"dev-master"

please check exist line "minimum-stability": "dev" in composer.json if failed

2. append new service provider file line in the section providers of file app.config after appended,it should looks like

 ```
   'providers' => [
        Illuminate\Auth\AuthServiceProvider::class,
        ......
        Jacksunny\EventProcess\EventProcessServiceProvider::class,
    ],

```

3. create event class TestEvent

    ```
    class TestEvent extends BaseEvent implements EventContract {

    public $context_obj;

    public function __construct(User $user, Request $request, $entity, $action_name, array $options = null, TreeWalkerContract $tree_walker = null) {
        parent::__construct($tree_walker, $user, $request, $entity, $action_name, $options);
        $this->context_obj = $user;
    }
    ```
4. create event listener class TestEventListener

    ```
    class TestEventListener extends BaseEventListener implements EventListenerContract {

    public function __construct() {
        parent::__construct($this);
    }

    public function handle(TestEvent $event) {
        parent::handle($event);

        //other process code on this event type
    }
    ```
5. please notify me if you got any problem or error on it,thank you!

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

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

Total

2

Last Release

3249d ago

Major Versions

v0.7 → v1.02017-08-08

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5234046?v=4)[jacksunny2020](/maintainers/jacksunny2020)[@jacksunny2020](https://github.com/jacksunny2020)

---

Top Contributors

[![jacksunny2020](https://avatars.githubusercontent.com/u/5234046?v=4)](https://github.com/jacksunny2020 "jacksunny2020 (12 commits)")

### Embed Badge

![Health badge](/badges/jacksunny-eventprocess/health.svg)

```
[![Health](https://phpackages.com/badges/jacksunny-eventprocess/health.svg)](https://phpackages.com/packages/jacksunny-eventprocess)
```

###  Alternatives

[laravel/octane

Supercharge your Laravel application's performance.

4.0k24.7M211](/packages/laravel-octane)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[laravel/nightwatch

The official Laravel Nightwatch package.

36210.1M34](/packages/laravel-nightwatch)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21313.7k3](/packages/ecotone-laravel)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3911.7k](/packages/codewithdennis-larament)

PHPackages © 2026

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