forked from nexylan/slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.21 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
43
44
45
{
"name": "nexylan/slack",
"description": "A simple PHP package for sending messages to Slack, with a focus on ease of use and elegant syntax.",
"type": "library",
"keywords": ["slack", "webhook"],
"license": "MIT",
"authors": [
{
"name": "maknz",
"email": "github@mak.geek.nz"
},
{
"name": "Sullivan SENECHAL",
"email": "soullivaneuh@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"symfony/options-resolver": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.4",
"mockery/mockery": "^1.4",
"nyholm/psr7": "^1.1",
"php-http/discovery": "^1.7",
"php-http/httplug": "^2.0",
"php-http/message": "^1.6",
"php-http/mock-client": "^1.3"
},
"suggest": {
"nexylan/slack-bundle": "Required for Symfony bundle support"
},
"autoload": {
"psr-4": {
"Nexy\\Slack\\": "src/"
}
},
"config": {
"sort-packages": true
}
}