-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
70 lines (70 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sevenspan/laravel-chat",
"description": "The Laravel Chat package simplifies one-to-one and group chat integration, facilitates document sharing within chats, manages read and unread message counts, and supports document uploads to both local and AWS S3 storage",
"keywords": [
"laravel",
"chat",
"chat-package",
"chat-system",
"chat-application",
"composer",
"messaging-package",
"laravel-chat"
],
"homepage": "https://github.com/7span/chat",
"license": "MIT",
"authors": [
{
"name": "Harshil Patanvadiya",
"email": "[email protected]",
"homepage": "https://github.com/harshil-patanvadiya",
"role": "Developer"
},
{
"name": "Kajal Pandiya",
"email": "[email protected]",
"homepage": "https://github.com/kajal98",
"role": "Developer"
},
{
"name": "Hemratna Bhimani",
"email": "[email protected]",
"homepage": "https://github.com/hemratna",
"role": "Developer"
}
],
"require": {
"php": "^8.1 || ^8.2",
"aws/aws-sdk-php": "^3.283",
"league/flysystem-aws-s3-v3": "^3.0",
"spatie/laravel-sluggable": "^3.5"
},
"autoload": {
"psr-4": {
"SevenSpan\\Chat\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SevenSpan\\Chat\\Tests\\": "tests"
}
},
"scripts": {},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"SevenSpan\\Chat\\Providers\\ChatServiceProvider"
],
"aliases": {
"User": "SevenSpan\\Chat\\Facades\\User",
"Channel": "SevenSpan\\Chat\\Facades\\Channel",
"Message": "SevenSpan\\Chat\\Facades\\Message"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}