zgetro / video-tile-sdk
Forked of offical VideoTileSDK package.
v1.1.0
2025-04-21 14:30 UTC
Requires
- php: >=7.2.5
- ext-json: *
- guzzlehttp/guzzle: ^7.4
Requires (Dev)
- phpunit/phpunit: 9.6.x-dev
- squizlabs/php_codesniffer: ^3.4
This package is auto-updated.
Last update: 2025-05-22 05:35:40 UTC
README
The VideoTile SDK is a wrapper for the VideoTile API. 13 methods are included as a starting point, more methods may be included during the life-cycle of the SDK & API.
The SDK is provided as a starting point to get to grips with the API, a quick & easy solution that you can include in your code base, alternatively; you can use the API directly and reference the API.
Full documentation can be found here.
Requirements
- PHP >= 7.2.5
- ext-json
- guzzlehttp/guzzle ^7.4
Installation
composer require zgetro/video-tile-sdk
Example usage
<?php require __DIR__ . '/vendor/autoload.php'; // Specify the VideoTile endpoint, your admin token & LMS vendor name. $api = new VideoTileSdk\VideoTile('http://api.videotilehost.com/', 'admin_token', 'vendor_lms_name'); echo $api->generateLoginUrl('user_token');
Running Tests
To run the full test suite:
composer test
Changelog
See CHANGELOG.md for recent changes.
License
MIT