Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hnhdigital-os/laravel-slack-api
Laravel integration for the bluora/php-slack-api package.
https://github.com/hnhdigital-os/laravel-slack-api
Last synced: about 7 hours ago
JSON representation
Laravel integration for the bluora/php-slack-api package.
- Host: GitHub
- URL: https://github.com/hnhdigital-os/laravel-slack-api
- Owner: hnhdigital-os
- License: mit
- Created: 2017-06-20T05:51:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-11T12:58:00.000Z (over 6 years ago)
- Last Synced: 2024-04-26T10:03:27.860Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
```
_____ _ _ __ _ _
/ ____| | | | / _| | | | |
| (___ | | __ _ ___| | __ | |_ ___ _ __ | | __ _ _ __ __ ___ _____| |
\___ \| |/ _` |/ __| |/ / | _/ _ \| '__| | | / _` | '__/ _` \ \ / / _ \ |
____) | | (_| | (__| < | || (_) | | | |___| (_| | | | (_| |\ V / __/ |
|_____/|_|\__,_|\___|_|\_\ API |_| \___/|_| |______\__,_|_| \__,_| \_/ \___|_|
```
Provides [Slack](https://github.com/hnhdigital-os/php-slack-api) for Laravel.[![Latest Stable Version](https://poser.pugx.org/hnhdigital-os/laravel-slack-api/v/stable.svg)](https://packagist.org/packages/hnhdigital-os/laravel-slack-api) [![Total Downloads](https://poser.pugx.org/hnhdigital-os/laravel-slack-api/downloads.svg)](https://packagist.org/packages/hnhdigital-os/laravel-slack-api) [![Latest Unstable Version](https://poser.pugx.org/hnhdigital-os/laravel-slack-api/v/unstable.svg)](https://packagist.org/packages/hnhdigital-os/laravel-slack-api) [![Built for Laravel](https://img.shields.io/badge/Built_for-Laravel-green.svg)](https://laravel.com/) [![License](https://poser.pugx.org/hnhdigital-os/laravel-slack-api/license.svg)](https://packagist.org/packages/hnhdigital-os/laravel-slack-api)
[![StyleCI](https://styleci.io/repos/94854520/shield?branch=master)](https://styleci.io/repos/94854520) [![Issue Count](https://codeclimate.com/github/hnhdigital-os/laravel-slack-api/badges/issue_count.svg)](https://codeclimate.com/github/hnhdigital-os/laravel-slack-api) [![Code Climate](https://codeclimate.com/github/hnhdigital-os/laravel-slack-api/badges/gpa.svg)](https://codeclimate.com/github/hnhdigital-os/laravel-slack-api)
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at [hnh.digital](http://hnh.digital).
## Install
Via composer:
`$ composer require hnhdigital-os/laravel-slack-api dev-master`
Enable the service provider by editing config/app.php:
```php
'providers' => [
...
Bluora\LaravelSlackApi\ServiceProvider::class,
...
];
```Enable the facade by editing config/app.php:
```php
'aliases' => [
...
'SlackApi' => Bluora\LaravelSlackApi\Facade::class,
...
];
```## Contributing
Please see [CONTRIBUTING](https://github.com/hnhdigital-os/laravel-slack-api/blob/master/CONTRIBUTING.md) for details.
## Credits
* [Rocco Howard](https://github.com/therocis)
* [All Contributors](https://github.com/hnhdigital-os/laravel-slack-api/contributors)## License
The MIT License (MIT). Please see [License File](https://github.com/hnhdigital-os/laravel-slack-api/blob/master/LICENSE) for more information.