This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b9e1b46
Showing
57 changed files
with
5,657 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/.idea | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# WscPHP – A Wowza Streaming Cloud REST API PHP library | ||
|
||
[](https://travis-ci.org/Ticketpark/WowzaWscRestPhp) | ||
|
||
A php library to use the [Wowza Streaming Cloud REST API](https://sandbox.cloud.wowza.com/api/current/docs). | ||
|
||
## Installation | ||
|
||
Add the library in your composer.json: | ||
|
||
``` | ||
composer require ticketpark/wsc-rest | ||
``` | ||
|
||
## Usage | ||
See [example folder](/example). | ||
|
||
|
||
## Contribution | ||
This library is incomplete and does not cover the full functionality of the Wowza API. | ||
|
||
You are welcome to contribute to this repo. | ||
|
||
* Follow [Symfony coding standards](http://symfony.com/doc/current/contributing/code/standards.html) | ||
* Write useful commit messages | ||
* Be nice and respect others | ||
|
||
## License | ||
This bundle is under the MIT license. See the complete license in the bundle: | ||
|
||
Resources/meta/LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "ticketpark/wsc-rest", | ||
"type": "library", | ||
"description": "A php library to use the Wowza Streaming Cloud REST API", | ||
"keywords": ["wowza"], | ||
"homepage": "https://github.com/Ticketpark/WowzaWscRestPhp", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Manuel Reinhard", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Additional contributors", | ||
"homepage": "https://github.com/Ticketpark/WowzaWscRestPhp/graphs/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3.0", | ||
"jms/serializer": "^1.0", | ||
"guzzlehttp/guzzle": "^6.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.0", | ||
"phpstan/phpstan": "^0.12.14" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Ticketpark\\Wsc\\": "lib/Wsc", | ||
"Ticketpark\\Wsc\\Tests\\": "tests/Wsc/Tests" | ||
} | ||
} | ||
} |
Oops, something went wrong.