-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "binkode/laravel-chat-system",
"description": "laravel chat system",
"license": "MIT",
"version": "1.0.0-beta.4.1",
"authors": [
{
"name": "myckhel",
"email": "[email protected]",
"homepage": "https://myckhel.com"
}
],
"homepage": "https://github.com/binkode/laravel-chat-system",
"keywords": [
"Laravel",
"ChatSystem"
],
"require": {
"php": "^8.2",
"nesbot/carbon": "^2.72.2|^3.0",
"illuminate/support": "^10|~11"
},
"minimum-stability": "beta",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/pest"
},
"require-dev": {
"fakerphp/faker": "^1.23.0",
"pestphp/pest": "^2.8",
"spatie/pest-plugin-test-time": "^2.0",
"orchestra/testbench": "^9"
},
"autoload": {
"psr-4": {
"Binkode\\ChatSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Binkode\\ChatSystem\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Binkode\\ChatSystem\\ChatSystemServiceProvider"
],
"aliases": {
"ChatSystem": "Binkode\\ChatSystem\\Facades\\ChatSystem"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}