Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goodnesskay/laravel-slack
A Laravel Package that makes Automatic Invitation to Slack Channels seamless
https://github.com/goodnesskay/laravel-slack
automation invitation-system laravel laravel-slack library packagist php slack
Last synced: about 7 hours ago
JSON representation
A Laravel Package that makes Automatic Invitation to Slack Channels seamless
- Host: GitHub
- URL: https://github.com/goodnesskay/laravel-slack
- Owner: goodnesskay
- Created: 2017-03-06T02:37:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-14T07:58:03.000Z (over 6 years ago)
- Last Synced: 2024-05-08T18:14:52.864Z (6 months ago)
- Topics: automation, invitation-system, laravel, laravel-slack, library, packagist, php, slack
- Language: PHP
- Homepage: http://goodnesskayode.me
- Size: 482 KB
- Stars: 34
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## LARAVEL SLACK PACKAGE
[![Latest Stable Version](https://poser.pugx.org/goodnesskay/laravel-slack/v/stable)](https://packagist.org/packages/goodnesskay/laravel-slack)
[![License](https://poser.pugx.org/goodnesskay/laravel-slack/license)](https://packagist.org/packages/goodnesskay/laravel-slack)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/goodnesskay/Laravel-Slack/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/goodnesskay/Laravel-Slack/?branch=master)
[![Build Status](https://scrutinizer-ci.com/g/goodnesskay/Laravel-Slack/badges/build.png?b=master)](https://scrutinizer-ci.com/g/goodnesskay/Laravel-Slack/build-status/master)> This package was built for easy integration of automatic Slack invite into your Laravel Project instead of writing codes from scratch or with another programming language.
If your web project is built on Laravel and you need to handle Automatic Slack Invite, this package makes that job seamless. Enjoy!!!## Requirement
- [PHP](https://php.net) 5.6+
- [Composer](https://getcomposer.org)## Installation
To install into your project, run the command below in your terminal.```
composer require goodnesskay/laravel-slack
```Once the package is done being installed, register the service provider. Open `config/app.php` and add the following to the `providers` key.
```
GoodnessKay\LaravelSlack\LaravelSlackServiceProvider::class
```
After that, register the Facade in the same `config/app.php` file:
```
'aliases' => [
...
'LaravelSlack' => GoodnessKay\LaravelSlack\Facade\LaravelSlack::class,
...
]
```
Finally, this project requires GuzzleHttp Client. Install it by running this in your terminal
```
composer require guzzlehttp/guzzle
```
## Configure
Publish the config file `LaravelSlack.php` to config folder,
the **Views** folder of the package named **Slack** to the `resources/views` folder and `LaravelSlackController.php` to `App\Http\Controller` folder
```
php artisan vendor:publish --provider="GoodnessKay\LaravelSlack\LaravelSlackServiceProvider"```
## How it Works
After following all the information stated above, what next to do are:**A)** Copy the code below to your `.env` file and make changes to the values.
```
SLACK_TEAM_NAME="Codebag Team"
TEAM_DESCRIPTION="Brief Description of your team. This will be seen publicly"
SLACK_TEAM_URL="https://codebag-team-test.slack.com/"
SLACK_API_TOKEN="apap-2526258373-71328384096-187220289412-01c2c6637bb0d474f39f24e0a79d6e072"
SLACK_TEAM_EMAIL="[email protected]"```
**Note:** Make sure you include the quotation mark.
> To get your Slack Api Token, check [https://api.slack.com/custom-integrations/legacy-tokens](https://api.slack.com/custom-integrations/legacy-tokens) and go to Legacy Token Generator to issue the token.**B)** Copy the code below into your route file `routes/web.php`
```
Route::get('/slack',[
'uses'=>'LaravelSlackController@slackPage',
'as'=>'slack'
]);Route::post('/slack',[
'uses'=>'LaravelSlackController@sendSlackInvite',
'as'=>'slack'
]);```
**C)** Use `php artisan serve` and check your slack invite page on `http://locahost:8000/slack`
You should see this:
![goodnesskay-laravel-slack-view](https://cloud.githubusercontent.com/assets/16525886/26491867/3598c632-4209-11e7-9fe6-347d730532e1.png)
## ContributeYou can `fork` this package, `contribute` and `submit a pull request`. I will really love it.
## You want to appreciate me?
You can appreciate me by **starring** this repository and follow me on [Github](https://github.com/goodnesskay) , [twitter](https://twitter.com/goodnesskayode) and subscribe to my [Youtube](https://www.youtube.com/channel/UC3h5EkjLBS5VtpJRVRrMD-Q) Channel!
I love you too.
**Goodness Kayode | Pusher of Codes**
## License
MIT License (MIT).