PHPackages                             larva/laravel-umeng-push - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. larva/laravel-umeng-push

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

larva/laravel-umeng-push
========================

This is a Laravel expansion for the umeng Push.

1.0.1(5y ago)0928MITPHP

Since Mar 5Pushed 3y agoCompare

[ Source](https://github.com/larvatecn/laravel-umeng-push)[ Packagist](https://packagist.org/packages/larva/laravel-umeng-push)[ RSS](/packages/larva-laravel-umeng-push/feed)WikiDiscussions master Synced today

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

larva/laravel-umeng-push
========================

[](#larvalaravel-umeng-push)

适用于 Laravel 的友盟消息推送通道适配器

安装
--

[](#安装)

```
composer require "larva/laravel-umeng-push" -vv
```

配置
--

[](#配置)

添加配置到 `services.php`

```
'umeng'=>[
    'push'=>[
        'android' => [
            'appKey' => '',
            'appMasterSecret' => '',
            'miActivity' => '',
        ],
        'ios' => [
            'appKey' => '',
            'appMasterSecret' => '',
        ],
    ]
]
```

使用
--

[](#使用)

编写如下 通知类然后发出去就行了

```
namespace App\Models;

class User {
    /**
     * 获取移动端设备属性
     * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Relations\HasMany|object
     */
     public function routeNotificationForDevice()
     {
         return $this->devices()->latest('id')->first();
     }
}
```

```
namespace App\Notifications;

use Illuminate\Notifications\Notification;

class WelcomeNotification extends Notification
{
    /**
     * Get the notification's channels.
     *
     * @param mixed $notifiable
     * @return array|string
     */
    public function via($notifiable)
    {
        return [\Larva\UMeng\Notifications\DeviceChannel::class];
    }

    /**
     * Build the mail representation of the notification.
     *
     * @param mixed $notifiable
     * @return array
     */
    public function toDevice($notifiable)
    {
        /** @var \App\Models\UserDevice $device */
        if (!$device = $notifiable->routeNotificationFor('device', $this)) {
            return false;
        }

        $message = [
            'ticker' => '我们刚刚给用户增加了个通知功能。',    // 必填，通知栏提示文字
            'title' => '我们刚刚给用户增加了个通知功能。',    // 必填，通知标题
            'text' => '所以得测试测试好使不好使！',    // 必填，通知文字描述
        ];
        if ($device->isAndroid) {
            $android = new AndroidMessage();
            $android->setDeviceTokens($device->token);
            $android->setType($this->notificationType);//点对点推送
            $android->setPayload('display_type', $this->displayType);//通知消息
            $android->setPayloadBody('ticker', $message['ticker']);// 必填，通知栏提示文字
            $android->setPayloadBody('title', $message['title']);// 必填，通知标题
            $android->setPayloadBody('text', $message['text']);// 必填，通知文字描述

            return $android;
        } else {
            $ios = new IOSMessage();
            $ios->setDeviceTokens($device->token);
            $ios->setType($this->notificationType);//点对点推送
            $ios->setPayload('display_type', $this->displayType);//通知消息
            $ios->setAPS('alert', [
                'title' => $message['ticker'],
                'subtitle' => $message['title'],
                'body' => $message['text'],
            ]);
            return $ios;
        }
    }
}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

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

1894d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/534cdb651e8c806590fa945c6b5a18f361613848e890db1349f4a9fbcae1a650?d=identicon)[xutongle](/maintainers/xutongle)

---

Tags

laravelLarvaumeng

### Embed Badge

![Health badge](/badges/larva-laravel-umeng-push/health.svg)

```
[![Health](https://phpackages.com/badges/larva-laravel-umeng-push/health.svg)](https://phpackages.com/packages/larva-laravel-umeng-push)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[therobfonz/laravel-mandrill-driver

Mandrill Driver for Laravel

773.5M](/packages/therobfonz-laravel-mandrill-driver)

PHPackages © 2026

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