forked from maknz/slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 843 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "maknz/slack",
"description": "A simple PHP package for sending messages to Slack, with a focus on ease of use and elegant syntax.",
"keywords": ["laravel", "slack"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "maknz",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "~6.0|~5.0|~4.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"mockery/mockery": "0.9.*"
},
"suggest": {
"maknz/slack-laravel": "Required for Laravel support",
"nexylan/slack-bundle": "Required for Symfony bundle support"
},
"autoload": {
"psr-4": {
"Maknz\\Slack\\": "src/"
}
},
"minimum-stability": "stable"
}