-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
50 lines (50 loc) · 1.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
{
"name": "sarfraznawaz2005/laravel-sse",
"description": "Laravel package to provide Server Sent Events functionality for your app.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sarfraz Ahmed",
"email": "sarfraznawaz2005@gmail.com",
"homepage": "http://codeinphp.github.io"
}
],
"homepage": "https://github.com/sarfraznawaz2005/laravel-sse",
"keywords": [
"Laravel",
"SSE",
"Sever Sent Events",
"Server",
"Event",
"Realtime",
"Polling",
"Notifications"
],
"require": {
"php": "^7.0|^8.0",
"illuminate/support": "~5|~6|~7|~8|~9|~10|~11"
},
"autoload": {
"psr-4": {
"Sarfraznawaz2005\\SSE\\": "src/"
},
"files": [
"src/Helpers/helper.php"
]
},
"extra": {
"laravel": {
"providers": [
"Sarfraznawaz2005\\SSE\\ServiceProvider"
],
"aliases": {
"SSE": "Sarfraznawaz2005\\SSE\\Facades\\SSEFacade"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}