Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathieuimbert/slack-logger
This is a simple package that allow a PHP script to send real time logs to Slack.
https://github.com/mathieuimbert/slack-logger
logging slack
Last synced: about 2 months ago
JSON representation
This is a simple package that allow a PHP script to send real time logs to Slack.
- Host: GitHub
- URL: https://github.com/mathieuimbert/slack-logger
- Owner: mathieuimbert
- License: apache-2.0
- Created: 2016-10-14T13:47:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-01T15:48:04.000Z (almost 8 years ago)
- Last Synced: 2024-09-27T17:35:36.554Z (4 months ago)
- Topics: logging, slack
- Language: PHP
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# slack-logger
### Packagist
[![Latest Stable Version](https://poser.pugx.org/mathieuimbert/slack-logger/v/stable)](https://packagist.org/packages/mathieuimbert/slack-logger)
[![Latest Unstable Version](https://poser.pugx.org/mathieuimbert/slack-logger/v/unstable)](https://packagist.org/packages/mathieuimbert/slack-logger)
[![Total Downloads](https://poser.pugx.org/mathieuimbert/slack-logger/downloads)](https://packagist.org/packages/mathieuimbert/slack-logger)
[![License](https://poser.pugx.org/mathieuimbert/slack-logger/license)](https://packagist.org/packages/mathieuimbert/slack-logger)### Unit Tests
[![Build Status](https://travis-ci.org/mathieuimbert/slack-logger.svg?branch=master)](https://travis-ci.org/mathieuimbert/slack-logger)
[![Coverage Status](https://coveralls.io/repos/github/mathieuimbert/slack-logger/badge.svg?branch=master)](https://coveralls.io/github/mathieuimbert/slack-logger?branch=master)### Code Quality
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/7c2c822d-857f-4b69-874d-d4e78b9d1e24/big.png)](https://insight.sensiolabs.com/projects/7c2c822d-857f-4b69-874d-d4e78b9d1e24)
## Description
This is a simple package that allow a PHP script to send real time logs to Slack.
Please be aware that the repository is still in an early phase, and every new commit might not be backward compatible.
## Installation
Installation of Slack Logger is done using [Composer](https://getcomposer.org/).
```
composer require mathieuimbert/slack-logger
```## Usage ##
- Create an [Incoming Webhook](https://my.slack.com/services/new/incoming-webhook/) for your slack account. Make sure to read the [full documentation](https://api.slack.com/incoming-webhooks)
- Instantiate SlackLogger in your script, and start sending logs to Slack
```php
$logger = new \MathieuImbert\Slack\Logger\SlackLogger('https://hooks.slack.com/services/xxxxxxx/xxxxxxx/xxxxxxx');
$logger->warning('This a not test of the emergency broadcast system, this is the real thing');
```### Options ###
You can customize the name and the icon of your logger in the incoming webhook configuration, or you can do it from SlackLogger by passing the right options to he constructor:
```php
$logger = new \MathieuImbert\SlackLogger\SlackLogger(
'https://hooks.slack.com/services/xxxxxxx/xxxxxxx/xxxxxxx',
array('username' => 'My Slack Logger', 'icon_emoji' => ':cop:')
);
```