PHPackages                             hl/hiloxa-trigger - 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. hl/hiloxa-trigger

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

hl/hiloxa-trigger
=================

Webhook trigger package for hiloxa

1.0.0(2y ago)08.5k—7.1%MITPHPPHP ^8.0|^8.1|^8.2

Since Oct 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/husseinzaher/hiloxa-trigger)[ Packagist](https://packagist.org/packages/hl/hiloxa-trigger)[ Docs](https://github.com/husseinzaher/hiloxa-trigger)[ RSS](/packages/hl-hiloxa-trigger/feed)WikiDiscussions main Synced yesterday

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

Hiloxa trigger
==============

[](#hiloxa-trigger)

This package adds state support to models.

To give you a feel about how this package can be used, let's look at a quick example.

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

[](#installation)

You can install the package via composer:

```
composer require hl/hiloxa-trigger
```

You can publish the config file with:

```
php artisan vendor:publish --provider="HL\HiloxaTrigger\HiloxaTriggerServiceProvider" --tag="hiloxa-trigger-config"
```

This is the content of the published config file:

```
return [
    /*
     * Which base URL to use for trigger.
     */
    'base_url' => env('HILOXA_TRIGGER_BASE_URL', 'https://rest.gohighlevel.com/v1'),
    'api_key' => env('HILOXA_TRIGGER_API_KEY'),
    'trigger' => [
        'create' => true,
        'update' => true,
    ],

    'model_data' => \HL\HiloxaTrigger\DTO\CreateDTO::class
];
```

Imagine a model `Customer`, which has : `name`, `email` and `phone`. This package allows you to add your model to Hiloxa Contact

For the sake of our example, let's say that,

Here's what the `Customer` model would look like:

```
use HL\HiloxaTrigger\Trait\HiloxaTrigger;
use HL\HiloxaTrigger\Contracts\HiloxaAble;

class Customer extends Model implements HiloxaAble
{
    use HiloxaTrigger;

}
```

Here's a concrete implementation of data class, the `CustomerDTO` which refer to valid customer data:

```
class Customer extends Model implements HiloxaAble
{
    use HiloxaTrigger;

    public function hiloxaDTO($model): HiloxaDTO
    {
        return new CustomerDTO($model);
    }

}
```

License
-------

[](#license)

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

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

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

Unknown

Total

1

Last Release

989d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3226b9e5e1b1500ce8e203dd3d7e6077a0b989d612a72fbd978953273ca7d2d4?d=identicon)[husseinzaher](/maintainers/husseinzaher)

---

Top Contributors

[![husseinzaher](https://avatars.githubusercontent.com/u/24205592?v=4)](https://github.com/husseinzaher "husseinzaher (11 commits)")

---

Tags

eventlaravelwebhookhiloxaWebhook trigger

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hl-hiloxa-trigger/health.svg)

```
[![Health](https://phpackages.com/badges/hl-hiloxa-trigger/health.svg)](https://phpackages.com/packages/hl-hiloxa-trigger)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k15.1M131](/packages/laravel-pulse)[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.6k29.9M146](/packages/laravel-cashier)[laravel/scout

Laravel Scout provides a driver based solution to searching your Eloquent models.

1.7k55.0M619](/packages/laravel-scout)[spatie/laravel-responsecache

Speed up a Laravel application by caching the entire response

2.8k9.0M69](/packages/spatie-laravel-responsecache)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)

PHPackages © 2026

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