-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativephp.json
More file actions
89 lines (89 loc) · 2.75 KB
/
Copy pathnativephp.json
File metadata and controls
89 lines (89 loc) · 2.75 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "nativephp/mobile-vibe",
"version": "2.0.0",
"description": "Reverb / Pusher-protocol websocket client — live server events into NativePHP components",
"namespace": "Vibe",
"keywords": ["websocket", "reverb", "pusher", "broadcasting", "realtime"],
"category": "utilities",
"license": "MIT",
"pricing": {
"type": "free"
},
"author": {
"name": "Bifrost Technology, LLC",
"email": "support@nativephp.com",
"url": "https://nativephp.com"
},
"homepage": "https://github.com/nativephp/mobile-vibe",
"repository": "https://github.com/nativephp/mobile-vibe",
"funding": [],
"platforms": [
"android",
"ios"
],
"screenshots": [],
"bridge_functions": [
{
"name": "Vibe.Subscribe",
"android": "com.nativephp.plugins.vibe.VibeFunctions.Subscribe",
"ios": "VibeFunctions.Subscribe",
"description": "Connect to Reverb (if needed) and subscribe to a channel"
},
{
"name": "Vibe.Unsubscribe",
"android": "com.nativephp.plugins.vibe.VibeFunctions.Unsubscribe",
"ios": "VibeFunctions.Unsubscribe",
"description": "Unsubscribe from a channel"
},
{
"name": "Vibe.SetAuthToken",
"android": "com.nativephp.plugins.vibe.VibeFunctions.SetAuthToken",
"ios": "VibeFunctions.SetAuthToken",
"description": "Update the bearer token used for private/presence channel auth"
},
{
"name": "Vibe.Trigger",
"android": "com.nativephp.plugins.vibe.VibeFunctions.Trigger",
"ios": "VibeFunctions.Trigger",
"description": "Send a client event (client-*) to other subscribers of a channel"
}
],
"android": {
"min_version": 26,
"permissions": [
"android.permission.INTERNET"
],
"repositories": [],
"dependencies": {
"implementation": [
"com.pusher:pusher-java-client:2.4.4"
]
},
"activities": [],
"services": [],
"receivers": [],
"providers": []
},
"ios": {
"min_version": "15.0",
"permissions": [],
"repositories": [],
"dependencies": {
"swift_packages": [
{
"url": "https://github.com/pusher/pusher-websocket-swift",
"version": "10.1.5",
"products": ["PusherSwift"]
}
],
"pods": []
}
},
"assets": {
"android": [],
"ios": []
},
"secrets": [],
"events": [],
"service_provider": "NativePHP\\Vibe\\VibeServiceProvider"
}