-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (33 loc) · 858 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
32
33
34
{
"name": "infinityxtech/slack-api-laravel",
"description": "Laravel wrapper for infinityxtech/slack-api-php",
"type": "library",
"require": {
"php": "^8.0",
"infinityxtech/slack-api-php": "^1.0",
"illuminate/support": "^8.0"
},
"autoload": {
"psr-4": {
"SlackApi\\Laravel\\": "src/"
}
},
"authors": [
{
"name": "InfinityXTech",
"email": "[email protected]"
}
],
"license": "MIT",
"extra": {
"laravel": {
"providers": [
"SlackApi\\Laravel\\SlackApiServiceProvider"
],
"aliases": {
"SlackApi": "SlackApi\\Laravel\\Facades\\SlackApi",
"SlackAuth": "SlackApi\\Laravel\\Facades\\SlackAuth"
}
}
}
}