Respoke PHP is the officially supported PHP library for Respoke.
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.
Please validate you have PHP 5.4.* or greater installed.
Install Respoke's PHP Library to your project using Composer.
composer require respoke/respoke
Install the library's dependencies.
composer install
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
Then use the library. Request access to Respoke at the Respoke website.
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.
json_encode(["token" => $tokenId]);
The test suite uses PHPUnit for test coverage.
phpunit --configuration phpunit.xml.dist
If you wish to submit an issue use the issue tracker.
- 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
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.
This project follows semantic versioning. The tl;dr of semver is:
- 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.
This source code is licensed under The MIT License.