Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sprain committed Mar 28, 2020
0 parents commit b9e1b46
Show file tree
Hide file tree
Showing 57 changed files with 5,657 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.idea
/vendor
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# WscPHP – A Wowza Streaming Cloud REST API PHP library

[![Build Status](https://travis-ci.org/Ticketpark/WowzaWscRestPhp.svg?branch=master)](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
33 changes: 33 additions & 0 deletions composer.json
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"
}
}
}
Loading

0 comments on commit b9e1b46

Please sign in to comment.