-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (42 loc) · 1.12 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
{
"name": "claybitner/laravel-cometchat-api",
"description": "A Laravel Library for Connecting to the Cometchat API",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.9",
"illuminate/support": "^10|^11|^12",
"illuminate/log": "^10|^11|^12"
},
"require-dev": {
"laravel/pint": "^1.13"
},
"authors": [
{
"name": "Clay Bitner",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DigitalIndoorsmen\\LaravelCometChatAPI\\": "src/DigitalIndoorsmen/LaravelCometChatAPI"
}
},
"extra": {
"laravel": {
"providers": [
"DigitalIndoorsmen\\LaravelCometChatAPI\\LaravelCometChatAPIServiceProvider"
],
"aliases": {
"CometChat": "DigitalIndoorsmen\\LaravelCometChatAPI\\LaravelCometChatAPIServiceFacade"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}