PHPackages                             arimolzer/ifttt-webhook - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. arimolzer/ifttt-webhook

AbandonedArchivedLibrary[HTTP &amp; Networking](/categories/http)

arimolzer/ifttt-webhook
=======================

09PHP

Since Aug 16Pushed 6y ago1 watchersCompare

[ Source](https://github.com/arimolzer/ifttt-webhook)[ Packagist](https://packagist.org/packages/arimolzer/ifttt-webhook)[ RSS](/packages/arimolzer-ifttt-webhook/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (2)Used By (0)

Laravel notification channel for IFTTT VOIP Calls
=================================================

[](#laravel-notification-channel-for-ifttt-voip-calls)

[![Latest Version on Packagist](https://camo.githubusercontent.com/16dbaa3d14e380bd7fd63f615e61e86b490e62a4b3ae7f278ebfc2a1d56f8fd9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6172696d6f6c7a65722f69667474742d776562686f6f6b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/arimolzer/ifttt-webhook)[![Build Status](https://camo.githubusercontent.com/089a7244be33913c601bf862ba6f4ea9ca412e55bc1d9c5804b1529de133700a/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6172696d6f6c7a65722f69667474742d776562686f6f6b2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/arimolzer/ifttt-webhook)[![Quality Score](https://camo.githubusercontent.com/b46a3ad20476fb8ed7423e0a5628dac5056468817c64268401a9c88b3f509ea0/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6172696d6f6c7a65722f69667474742d776562686f6f6b2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/arimolzer/ifttt-webhook)[![Total Downloads](https://camo.githubusercontent.com/a06a00f8e1918e7168a567a2c1404279d011676ce3e2b822c6d2eace4bf5ce5f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6172696d6f6c7a65722f69667474742d776562686f6f6b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/arimolzer/ifttt-webhook)

This package is designed to provide a custom Laravel notification channel and facade for webhooks to IFTTT.

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

[](#installation)

You can install the package via composer:

```
composer require arimolzer/ifttt-webhook
```

Usage
-----

[](#usage)

A complete example of how to add the IFTTT webhook channel to a notification is below:

```
use Arimolzer\IftttWebhook\Channels\IftttWebhookChannel;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;

class ContactRequestSubmitted extends Notification
{
    use Queueable;

    public function via($notifiable)
    {
        return [IftttWebhookChannel::class];
    }

    public function toIftttWebhookChannel($notifiable) : IftttWebhookChannel
    {
        return (new IftttWebhookChannel)
            ->setKey(env('IFTTT_VOIP_WEBHOOK_KEY'))
            ->setEvent(env('IFTTT_VOIP_WEBHOOK_EVENT'))
            ->setParams(
                $notifiable->param1,
                $notifiable->param2
                $notifiable->param3
            );
    }
}
```

You can also make an asynchronous webhook call via the `IftttWebhook::get()` facade. eg.

```
IftttWebhook::get($message->param1, $message->param2, $message->param3, $message->event, $message->key);
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Ari Molzer](https://github.com/arimolzer)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/22068367?v=4)[Ari Molzer](/maintainers/arimolzer)[@arimolzer](https://github.com/arimolzer)

---

Top Contributors

[![arimolzer](https://avatars.githubusercontent.com/u/22068367?v=4)](https://github.com/arimolzer "arimolzer (7 commits)")

### Embed Badge

![Health badge](/badges/arimolzer-ifttt-webhook/health.svg)

```
[![Health](https://phpackages.com/badges/arimolzer-ifttt-webhook/health.svg)](https://phpackages.com/packages/arimolzer-ifttt-webhook)
```

###  Alternatives

[php-http/cache-plugin

PSR-6 Cache plugin for HTTPlug

25025.5M80](/packages/php-http-cache-plugin)[illuminate/http

The Illuminate Http package.

11937.2M6.6k](/packages/illuminate-http)[rdkafka/rdkafka

A PHP extension for Kafka

2.2k20.0k1](/packages/rdkafka-rdkafka)[httpsoft/http-message

Strict and fast implementation of PSR-7 and PSR-17

87930.4k113](/packages/httpsoft-http-message)[mezzio/mezzio-router

Router subcomponent for Mezzio

265.3M84](/packages/mezzio-mezzio-router)[serpapi/google-search-results-php

Get Google, Bing, Baidu, Ebay, Yahoo, Yandex, Home depot, Naver, Apple, Duckduckgo, Youtube search results via SerpApi.com

69122.6k](/packages/serpapi-google-search-results-php)

PHPackages © 2026

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