forked from maknz/slack
-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
42 lines (42 loc) · 1.01 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "alek13/slack",
"description": "A simple PHP package (fork of maknz/slack) 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": "github@mak.geek.nz"
},
{
"name": "Alexander Chibrikin",
"email": "alek13.me@gmail.com"
}
],
"require": {
"php": "^7.1|^8.0",
"guzzlehttp/guzzle": "~7.0|~6.0|~5.0|~4.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.5",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Maknz\\Slack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Slack\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"minimum-stability": "stable"
}