-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 924 Bytes
/
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
{
"name": "nikapps/ortc-laravel",
"description": "An API wrapper for ORTC (Real-Time framework from realtime.co) based on Laravel framework",
"keywords": [
"laravel",
"RealTime",
"realtime.co",
"ORTC",
"API",
"Wrapper",
"XRTML",
"pub-sub",
"push",
"publish",
"real-time"
],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Ali Borhani",
"email": "[email protected]"
},
{
"name": "Hossein Moradgholi",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.1.* || 5.2.*",
"nikapps/ortc-php": "1.*"
},
"autoload": {
"psr-4": {
"Nikapps\\OrtcLaravel\\": "src/"
}
},
"minimum-stability": "stable"
}