Skip to content

Commit bd474ad

Browse files
committed
first import
0 parents  commit bd474ad

31 files changed

+4958
-0
lines changed

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.vendor/
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
.idea/
7+
# User-specific stuff:
8+
.idea/workspace.xml
9+
.idea/tasks.xml
10+
.idea/dictionaries
11+
.idea/vcs.xml
12+
.idea/jsLibraryMappings.xml
13+
14+
# Sensitive or high-churn files:
15+
.idea/dataSources.ids
16+
.idea/dataSources.xml
17+
.idea/dataSources.local.xml
18+
.idea/sqlDataSources.xml
19+
.idea/dynamic.xml
20+
.idea/uiDesigner.xml
21+
22+
# Gradle:
23+
.idea/gradle.xml
24+
.idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
.idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.iws
31+
32+
## Plugin-specific files:
33+
34+
# IntelliJ
35+
/out/
36+
37+
# mpeltonen/sbt-idea plugin
38+
.idea_modules/
39+
40+
# JIRA plugin
41+
atlassian-ide-plugin.xml
42+
43+
# Crashlytics plugin (for Android Studio and IntelliJ)
44+
com_crashlytics_export_strings.xml
45+
crashlytics.properties
46+
crashlytics-build.properties
47+
fabric.properties
48+
/vendor/
49+
/coverage/
50+
/ENV/

LICENSE.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) <year> <copyright holders>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
6+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
7+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
8+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
9+
subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall
12+
be included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
17+
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
19+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "topix-hackademy/laravel-wowza-restapi",
3+
"description": "A wrapper over wowza restapi with convenience methods",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "gab88slash",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"minimum-stability": "dev",
12+
"require": {
13+
"guzzlehttp/guzzle": "^6.2",
14+
"verdant/xml2array": "dev-master",
15+
"topix-hackademy/wowza-restapi": "^0.0.2"
16+
},
17+
"require-dev": {
18+
"phpspec/phpspec": "^2.0",
19+
"henrikbjorn/phpspec-code-coverage": "^2.0",
20+
"illuminate/support": "^5.2",
21+
"symfony/var-dumper": "^3.1",
22+
"laravel/framework": "^5.2"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Topix\\Hackademy\\LaravelWowza\\": "src/"
27+
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"Topix\\Hackademy\\LaravelWowza\\Test\\": "test/"
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)