Respoke PHP Library
Respoke PHP is the officially supported PHP library for Respoke., (*1)
With Respoke, you can add live voice, video, text and data features to your
website or mobile app. Check out our
Guides to get started
using Respoke and Respoke PHP now., (*2)
Please validate you have PHP 5.4.* or greater installed., (*3)
Installation
Install Respoke's PHP Library
to your project using Composer., (*4)
composer require respoke/respoke
Running the library
Install the library's dependencies., (*5)
composer install
After installing, you need to require Composer's autoloader:, (*6)
require 'vendor/autoload.php';
Then use the library. Request access to Respoke at the
Respoke website., (*7)
use Respoke\Client;
$client = new Respoke\Client([
"appId" => "APP_ID",
"appSecret" => "APP_SECRET",
"roleId" => "ROLE_ID",
"endpointId" => "USER_NAME"
]);
$tokenId = $client->getTokenId();
Return this $tokenId
to your front-end and pass it to the token
property
when connecting to Respoke., (*8)
json_encode(["token" => $tokenId]);
Running the tests
The test suite uses PHPUnit for test coverage., (*9)
phpunit --configuration phpunit.xml.dist
Contributing
If you wish to submit an issue use the issue tracker., (*10)
- Fork it ( https://github.com/[my-github-username]/respoke-php/fork )
- Create your feature branch (
git checkout -b my-new-feature
)
- Commit your changes (
git commit -a -m 'Add some feature'
)
- Push to the branch (
git push origin my-new-feature
)
- Create a new Pull Request
Cutting a new release
PHPRelease is used to release a new version
of this package. Details of the use of PHPRelease can be found on the project's
readme., (*11)
This project follows semantic versioning. The tl;dr of
semver is:, (*12)
- new major version when there are breaking changes to the public api of the
library.
- new minor version when there are backward-compatible changes to the api,
such as new features.
- new patch version when there are backward-compatible bug fixes, or other
changes that do not affect the public API.
License
This source code is licensed under The MIT License., (*13)