-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
55 lines (55 loc) · 1.46 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
{
"name": "syntaxlexx/chatmessenger",
"description": "Simple one-to-one/group chat messaging tool for Laravel 5, 6, 7, 8, 9 & 10 with Pusher Integration",
"keywords": [
"laravel",
"chat",
"messenger",
"messaging",
"user messaging",
"chat",
"pusher"
],
"license": "MIT",
"authors": [
{
"name": "/SyntaxLexx",
"email": "[email protected]",
"homepage": "https://github.com/syntaxlexx",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3|^8.0",
"illuminate/config": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"adamwathan/faktory": "0.3.*",
"friendsofphp/php-cs-fixer": "^2.5|^3.51",
"orchestra/testbench": "^3.0|^4.0|^9.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.5"
},
"autoload": {
"psr-4": {
"Lexx\\ChatMessenger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lexx\\ChatMessenger\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Lexx\\ChatMessenger\\ChatMessengerServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}