consynki/yii2-pushover

A Yii2 PushOver log target and pushover messaging component

Installs: 6 444

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 2

Open Issues: 2

Type:yii2-extension

1.1.0 2016-01-28 04:00 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:29:15 UTC


README

Yii2 Pushover provides a component and log targets to send Pushover (https://pushover.net/) messages.

Install

composer require consynki/yii2-pushover "*"

Or add "consynki/yii2-pushover": "*" to your composer.json file and run composer update

In config file:

'components' => [
    'pushover' => [
        'class' => 'consynki\yii\pushover\Pushover',
    	'user_key' => '<your-user-key>',
    	'api_key' => '<your-api-key>',

    ],
    'log' => [
        'targets' => [
            [
                'class' => 'consynki\yii\pushover\Target',
                'levels' => ['error'],
                'except' => ['yii\web\HttpException:404'],
            ]
        ],
    ],
]

You only need to confider the log target if you wish to send messages to pushover via the logging system. If you wish you can manual send messages directly via the component.

The log trace will support any additional standard Yii2 log target params.

It is recommended to limit the number of messages that are sent via pushover to critical issues. The best option is to only send errors, in addition you can ignore particular common error types events 404

If application doesn't have pushover component, no errors will try to be logged to pushover. This is useful for development environments, for example.

Usage

Pushover Component

If you would like to send a message without using the log target you can simply use the component directly

Yii::$app->pushover->send($message, $title, $sound);

Log Target

Exceptions and PHP errors are caught without effort. Standart Yii::(error|warning|info|trace) logging works as usual, but you also can use the following format:

Yii::error('Error Message', 'Error Category')