Download the PHP package lickd/slack-gateway-client without Composer

On this page you can find all versions of the php package lickd/slack-gateway-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package slack-gateway-client

slack-gateway-client

CI

A PHP package for publishing messages to a Slack gateway micro-service via AWS SQS. Does not communicate with Slack directly — it enqueues messages for a gateway service to process.

Supports Laravel and Symfony.

Requirements

Dependency Version
PHP ^8.2
Laravel ^10.0 \| ^11.0 \| ^12.0
Symfony ^6.0 \| ^7.0
aws/aws-sdk-php ^3.0

Laravel and Symfony are optional — only the one matching your framework is required.

Installation

Laravel

The service provider is auto-discovered. No additional setup required.

Symfony

Register the bundle in config/bundles.php:

Configuration

Both frameworks read from the same two environment variables:

Queue names are derived as {prefix}-high, {prefix}-normal, and {prefix}-low.

Both frameworks also require an Aws\Sqs\SqsClient instance to be bound in the container. SQS credentials (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_DEFAULT_REGION) are managed by the consuming application.

Laravel

Add to config/services.php:

Symfony

Create config/packages/slack_gateway_client.yaml:

Usage

Inject SlackGatewayPublisherInterface and call publish() with a SlackMessageDto and a SlackQueue priority:

SlackMessageDto

Property Type Required Default
channel string yes
text string yes
blocks array no []
attachments array no []
threadTs ?string no null
idempotencyKey ?string no null
source string no 'unknown'

SlackQueue

Case Derived queue name
SlackQueue::High {SLACK_GATEWAY_QUEUE_PREFIX}-high
SlackQueue::Normal {SLACK_GATEWAY_QUEUE_PREFIX}-normal
SlackQueue::Low {SLACK_GATEWAY_QUEUE_PREFIX}-low

Testing

Licence

MIT. See LICENSE.


All versions of slack-gateway-client with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
aws/aws-sdk-php Version ^3.0
psr/log Version ^1.0|^2.0|^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lickd/slack-gateway-client contains the following files

Loading the files please wait ...