Skip to content

Commit 75d67cd

Browse files
committed
Initial release
0 parents  commit 75d67cd

21 files changed

+3174
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea/
2+
/vendor
3+

composer.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "phpbg/rtsp",
3+
"description": "Basic RTSP 1.0 server built on top of react",
4+
"type": "library",
5+
"license": "MIT",
6+
"keywords": [
7+
"rtsp",
8+
"react",
9+
"server"
10+
],
11+
"authors": [
12+
{
13+
"name": "Samuel CHEMLA",
14+
"email": "[email protected]",
15+
"role": "Developer"
16+
}
17+
],
18+
"require": {
19+
"react/socket": "^1.1",
20+
"psr/log": "^1.0",
21+
"myclabs/php-enum": "^1.5",
22+
"evenement/evenement": "3.0"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"PhpBg\\Rtsp\\": "src"
27+
}
28+
},
29+
"require-dev": {
30+
"phpunit/phpunit": "^6.5"
31+
}
32+
}

0 commit comments

Comments
 (0)