PHPackages                             edbizarro/slacker-iugu - 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. edbizarro/slacker-iugu

ActiveLibrary

edbizarro/slacker-iugu
======================

Get information from http://c.iugu.com in your slack

v0.1.5(9y ago)08MITPHPPHP ^7.0

Since Oct 23Pushed 9y agoCompare

[ Source](https://github.com/edbizarro/slacker-iugu)[ Packagist](https://packagist.org/packages/edbizarro/slacker-iugu)[ RSS](/packages/edbizarro-slacker-iugu/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (5)Versions (8)Used By (0)

Slacker Iugu - Slack Slash command Iugu handler
===============================================

[](#slacker-iugu---slack-slash-command-iugu-handler)

[![Packagist](https://camo.githubusercontent.com/4fa79e92985ee62d4f8ac36a1c7c6262ac3e72c3bcbbece60f166789728036d0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f656462697a6172726f2f736c61636b65722d697567752e737667)](https://packagist.org/packages/edbizarro/slacker-iugu)[![Build Status](https://camo.githubusercontent.com/7efaec0d4a16678770e145a7d1d860217dfc60b950b738135341aa749c189db3/68747470733a2f2f7472617669732d63692e6f72672f656462697a6172726f2f736c61636b65722d697567752e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/edbizarro/slacker-iugu)[![StyleCI](https://camo.githubusercontent.com/54446d774ff11a338f79e01ac8465b9e8214ca235570b908ffd5472f2a9b3fd5/68747470733a2f2f7374796c6563692e696f2f7265706f732f37313337383435372f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/71378457)[![Codacy Badge](https://camo.githubusercontent.com/72a78d3df1b6b04c9dfcdae45517907eee09906908fe8ee58105d588b184312d/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f3766316136383062346264383438656638613362386263663930303339623265)](https://www.codacy.com/app/Zendev/slacker-iugu?utm_source=github.com&utm_medium=referral&utm_content=edbizarro/slacker-iugu&utm_campaign=Badge_Grade)

Based and inspired by [spatie/laravel-slack-slash-command](https://github.com/spatie/laravel-slack-slash-command)

First of all [setup a Slash command](https://docs.spatie.be/laravel-slack-slash-command/v1/installation-and-setup) and install [spatie/laravel-slack-slash-command](https://github.com/spatie/laravel-slack-slash-command) package into a Laravel app.

Usage
-----

[](#usage)

Follow this steps to use this package in your Laravel installation

### 1. Require it on composer

[](#1-require-it-on-composer)

```
composer require edbizarro/slacker-iugu
```

### 2. Load service provider

[](#2-load-service-provider)

You need to update your `config/app.php` configuration file to register our service provider, adding this lines on `providers` array:

```
// config/app.php
'providers' => [
    ...
    Spatie\SlashCommand\SlashCommandServiceProvider::class,
    Edbizarro\Slacker\Iugu\Providers\SlackerIuguServiceProvider::class,
];
```

Configuration
-------------

[](#configuration)

You need to publish the package configuration file. To do this, run `php artisan vendor:publish` on terminal. This will publish a `slacker-iugu-handler.php` file on your configuration folder like this:

```
