PHPackages                             chaplean/slack-client-bundle - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. chaplean/slack-client-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

chaplean/slack-client-bundle
============================

The Bundle base to fork

08

Since Nov 27Compare

[ Source](https://github.com/chaplean/slack-client-bundle)[ Packagist](https://packagist.org/packages/chaplean/slack-client-bundle)[ RSS](/packages/chaplean-slack-client-bundle/feed)WikiDiscussions Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

slack-client-bundle
===================

[](#slack-client-bundle)

[![build status](https://camo.githubusercontent.com/50a4364fa7b13bfb4e68312ccdcee57e78b6299cd9bb10e7f72bc37bdf3752c2/68747470733a2f2f6769742e636861706c65616e2e636f6f702f6f70656e2d736f757263652f62756e646c652f736c61636b2d636c69656e742d62756e646c652f6261646765732f6d61737465722f6275696c642e737667)](https://git.chaplean.coop/open-source/bundle/slack-client-bundle/commits/master)[![build status](https://camo.githubusercontent.com/4b7eba3739558d78ffaba3ac87bf4f4589d71ee10fc051430394216807f9af35/68747470733a2f2f6769742e636861706c65616e2e636f6f702f6f70656e2d736f757263652f62756e646c652f736c61636b2d636c69656e742d62756e646c652f6261646765732f6d61737465722f636f7665726167652e737667)](https://git.chaplean.coop/open-source/bundle/slack-client-bundle/commits/master)[![contributions welcome](https://camo.githubusercontent.com/9e93e892d0685e1bf7a1d0bd7c8410d6ecf2086a0a7b48dd58a6b96fa556ea2a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f6e747269627574696f6e732d77656c636f6d652d627269676874677265656e2e7376673f7374796c653d666c6174)](https://github.com/chaplean/slack-client-bundle/issues)

This bundle allows you to use the [slack api](https://api.slack.com/web) easily from your php code.

Table of content
----------------

[](#table-of-content)

- [Installation](#Installation)
- [Configuration](#Configuration)
- [Usage](#Usage)
- [Versioning](#Versioning)
- [Contributing](#Contributing)
- [Hacking](#Hacking)
- [License](#License)

Installation
------------

[](#installation)

This bundle requires at least Symfony 3.0.

You can use [composer](https://getcomposer.org) to install slack-client-bundle:

```
composer require chaplean/slack-client-bundle
```

Then add to your AppKernel.php:

```
new Chaplean\Bundle\SlackClientBundle\ChapleanSlackClientBundle(),
```

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

[](#configuration)

First you will need to import the bundle configuration.

config.yml:

```
imports:
    - { resource: '@ChapleanSlackClientBundle/Resources/config/config.yml' }
```

You must also create some parameters.

parameters.yml:

```
parameters:
    chaplean_slack_client.access_token: 'your access token'
```

Usage
-----

[](#usage)

See the rest-client-bundle's [usage documentation](https://github.com/chaplean/rest-client-bundle#using-a-bundle-based-on-rest-client-bundle).

### Available functions:

[](#available-functions)

> Note: Slack uses the POST method for all api endpoints.

- [Chat](https://api.slack.com/methods#chat)

    - [postMessage()](https://api.slack.com/methods/chat.postMessage)
    - [postDeleteMessage()](https://api.slack.com/methods/chat.delete)
- [Team](https://api.slack.com/methods#team)

    - [postGetTeamInfos()](https://api.slack.com/methods/team.info)
- [Users](https://api.slack.com/methods#users)

    - [postListUsers()](https://api.slack.com/methods/users.list)
- [User Groups](https://api.slack.com/methods#usergroups)

    - [postListGroups()](https://api.slack.com/methods/usergroups.list)
    - [postListUsersForGroup()](https://api.slack.com/methods/usergroups.users.list)
- [Channels](https://api.slack.com/methods#channels)

    - [postChannel()](https://api.slack.com/methods/channels.create)
    - [postListChannel()](https://api.slack.com/methods/channels.list)
    - [postChannelInvitation()](https://api.slack.com/methods/channels.invite)

Versioning
----------

[](#versioning)

slack-client-bundle follows [semantic versioning](https://semver.org/). In short the scheme is MAJOR.MINOR.PATCH where

1. MAJOR is bumped when there is a breaking change,
2. MINOR is bumped when a new feature is added in a backward-compatible way,
3. PATCH is bumped when a bug is fixed in a backward-compatible way.

Versions bellow 1.0.0 are considered experimental and breaking changes may occur at any time.

Contributing
------------

[](#contributing)

Contributions are welcomed! There are many ways to contribute, and we appreciate all of them. Here are some of the major ones:

- [Bug Reports](https://github.com/chaplean/slack-client-bundle/issues): While we strive for quality software, bugs can happen and we can't fix issues we're not aware of. So please report even if you're not sure about it or just want to ask a question. If anything the issue might indicate that the documentation can still be improved!
- [Feature Request](https://github.com/chaplean/slack-client-bundle/issues): You have a use case not covered by the current api? Want to suggest a change or add something? We'd be glad to read about it and start a discussion to try to find the best possible solution.
- [Pull Request](https://github.com/chaplean/slack-client-bundle/pulls): Want to contribute code or documentation? We'd love that! If you need help to get started, GitHub as [documentation](https://help.github.com/articles/about-pull-requests/) on pull requests. We use the ["fork and pull model"](https://help.github.com/articles/about-collaborative-development-models/) were contributors push changes to their personnal fork and then create pull requests to the main repository. Please make your pull requests against the `master` branch.

As a reminder, all contributors are expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md).

Hacking
-------

[](#hacking)

You might find the following commands usefull when hacking on this project:

```
# Install dependencies
composer install

# Run tests
bin/phpunit
```

License
-------

[](#license)

slack-client-bundle is distributed under the terms of the MIT license.

See [LICENSE](LICENSE.md) for details.

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/6bfb5e4a3dde826e4cd3f92d24fdfbdce1415c77f3edd38fc3420b4988977e13?d=identicon)[HugoDumazeau](/maintainers/HugoDumazeau)

![](https://www.gravatar.com/avatar/8084ee0162a85df3b3f49230b8c0dde81108195caa541bb00642cbd050e88b25?d=identicon)[hudumazeau](/maintainers/hudumazeau)

![](https://www.gravatar.com/avatar/75b46ff5a3d9bc9b04e9a3e571152c2e562dd71ef4bde0a048bea1d0567e97d0?d=identicon)[mdevlamynck](/maintainers/mdevlamynck)

![](https://www.gravatar.com/avatar/e398e12030f12bbc00b875aa369d51588ed81ac98424d53dde1a6fd97e8219a9?d=identicon)[tomchaplean](/maintainers/tomchaplean)

### Embed Badge

![Health badge](/badges/chaplean-slack-client-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/chaplean-slack-client-bundle/health.svg)](https://phpackages.com/packages/chaplean-slack-client-bundle)
```

###  Alternatives

[felippe-regazio/php-hot-reloader

A class to add a complete live reload feature to any php project

1083.6k](/packages/felippe-regazio-php-hot-reloader)[arbermustafa/filament-locationpickr-field

Location picker field for Filament Php using Google Maps

1542.6k](/packages/arbermustafa-filament-locationpickr-field)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
