Download the PHP package wgmv/laravel-slack-api without Composer

On this page you can find all versions of the php package wgmv/laravel-slack-api. 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 laravel-slack-api

Laravel 5 and Lumen - Slack API

Latest Stable Version Total Downloads License

StyleCI

This package provides a simple way to use the Slack API.

The package is a fork from https://github.com/Vluzrmos/laravel-slack-api The original package is not maintained and I made several changes that possibly make this version incompatible to the original.

Changes made:

Installation

composer require wgmv/laravel-slack-api

Installation on Laravel 5

The package has autodiscovery enabled. (A laravel 5.5 feature)

Configuration

This package uses slacks legacy tokens. Get you token here:

https://api.slack.com/custom-integrations/legacy-tokens

Configure your slack team token in config/services.php

Installation on Lumen

I have not tested the lumen installation! Documentation from the original package:

Add the following line on bootstrap/app.php:

If you want to use facades, add this lines on bootstrap/app.php

Otherwise, just use the singleton shortcuts:

Example Usage

All Injectable Contracts:

Generic API

Wgmv\SlackApi\Contracts\SlackApi

Allows you to do generic requests to the api with the following http verbs: get, post, put, patch, delete ... all allowed api methods you could see here: Slack Web API Methods.

Channels API

Wgmv\SlackApi\Contracts\SlackChannel

Allows you to operate channels: invite, archive, rename, join, kick, setPurpose ...

Chat API

Wgmv\SlackApi\Contracts\SlackChat

Allows you to send, update and delete messages with methods: delete, message, update.

Files API

Wgmv\SlackApi\Contracts\SlackFile

Allows you to send, get info, delete, or just list files: info, lists, upload, delete.

Groups API

Wgmv\SlackApi\Contracts\SlackGroup

Same methods of the SlackChannel, but that operates with groups and have adicional methods: open, close, createChild

Instant Messages API (Direct Messages)

Wgmv\SlackApi\Contracts\SlackInstantMessage

Allows you to manage direct messages to your team members.

Real Time Messages API

Wgmv\SlackApi\Contracts\SlackRealTimeMessage

Allows you list all channels and user presence at the moment.

Search API

Wgmv\SlackApi\Contracts\SlackSearch

Find messages or files.

Stars API

Wgmv\SlackApi\Contracts\SlackStar

List all of starred itens.

Team API

Wgmv\SlackApi\Contracts\SlackTeam

Get information about your team.

Users API

Wgmv\SlackApi\Contracts\SlackUser

Get information about an user on your team or just check your presence ou status.

Users Admin API

Wgmv\SlackApi\Contracts\SlackUserAdmin

Invite new members to your team.

License

DBAD License.


All versions of laravel-slack-api with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
illuminate/support Version ~5.0
illuminate/cache Version ~5.0
guzzlehttp/guzzle Version ~5.3|~6.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 wgmv/laravel-slack-api contains the following files

Loading the files please wait ....