PHPackages                             skrypnik-dzencode/sendpulse-laravel - 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. skrypnik-dzencode/sendpulse-laravel

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

skrypnik-dzencode/sendpulse-laravel
===================================

A minimal service provider to set up and use the SendPulse PHP library in Laravel 5

v1.0.1(10y ago)07MITPHP

Since Jan 19Pushed 5y agoCompare

[ Source](https://github.com/skrypnik-dzencode/sendpulse-laravel)[ Packagist](https://packagist.org/packages/skrypnik-dzencode/sendpulse-laravel)[ RSS](/packages/skrypnik-dzencode-sendpulse-laravel/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (3)Used By (0)

SendPulse Laravel Helper
========================

[](#sendpulse-laravel-helper)

A service provider and facade to set up and use the [SendPulse](https://sendpulse.com/) PHP library in Laravel 5.

[![Build Status](https://camo.githubusercontent.com/adfdd07491202c4022c5e4ec0253f6bf7a4f700cf615bea8b7ec7c1c6e4ff3a5/68747470733a2f2f7472617669732d63692e6f72672f676172657468746461766965732f73656e6470756c73652d6c61726176656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/garethtdavies/sendpulse-laravel)

This package consists of a service provider, which binds an instance of an initialized SendPulse client to the IoC-container and a SendPulse facade so you may access all methods of the SendpulseApi class via the syntax:

```
$message = ['title' => 'My first notification', 'website_id' => 1, 'body' => 'I am the body of the push message'];

SendPulse::createPushTask($message);
```

You should refer to the [SendPulse API](https://sendpulse.com/api) and underlying [SendPush PHP class](https://github.com/garethtdavies/sendpulse-rest-api-php) for full details about all available methods.

Setup
-----

[](#setup)

1. Install the 'wensleydale/sendpulse-laravel' package

    Note, this will also install the required wensleydale/sendpulse-rest-api-php package.

    ```
    $ composer require wensleydale/sendpulse-laravel:1.*
    ```
2. Update 'config/app.php'

    ```
    # Add `SendPulseLaravelServiceProvider` to the `providers` array
    'providers' => array(
        ...
        'SendPulse\SendPulseLaravel\SendPulseLaravelServiceProvider',
    )

    # Add the `SendPushFacade` to the `aliases` array
    'aliases' => array(
        ...
        'SendPulse' => 'SendPulse\SendPulseLaravel\SendPulseFacade',
    )
    ```
3. Publish the configuration file (creates sendpulse.php in config directory) and add your API keys and optional default settings.

    ```
    $ php artisan vendor:publish
    ```

### Type Hinting

[](#type-hinting)

If you do not wish to make use of the SendPulse facade you may simply "type-hint" the SendPulse dependency in the constructor of a class that is resolved by the IoC container and an instantiated client will be ready for use.

```
use SendPulse\SendpulseApi;

private $client;

public function __construct(SendpulseApi $client)
{
    $this->client = $client;
}

public function getWebsites()
{
	$this->client->pushListWebsites();
}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

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

Total

2

Last Release

3763d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/86550d39abe1ca21fe602acc06be7b61e8650cd3ed7688cbd08c52f3cddf97c0?d=identicon)[skrypnik-dzencode](/maintainers/skrypnik-dzencode)

---

Top Contributors

[![skrypnik-dzencode](https://avatars.githubusercontent.com/u/65762454?v=4)](https://github.com/skrypnik-dzencode "skrypnik-dzencode (3 commits)")

---

Tags

laravelsendpulse

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/skrypnik-dzencode-sendpulse-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/skrypnik-dzencode-sendpulse-laravel/health.svg)](https://phpackages.com/packages/skrypnik-dzencode-sendpulse-laravel)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M684](/packages/barryvdh-laravel-ide-helper)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[nedwors/navigator

A Laravel package to ease defining navigation menus

433.1k](/packages/nedwors-navigator)[xefi/faker-php-laravel

Faker php integration with laravel

1915.1k](/packages/xefi-faker-php-laravel)[dcblogdev/laravel-junie

Install pre-configured guides for Jetbrains Junie

392.5k](/packages/dcblogdev-laravel-junie)

PHPackages © 2026

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