msaaq/nelc-laravel
Composer 安装命令:
composer require msaaq/nelc-laravel
包简介
xAPI Integration with Saudi NELC (National Center for e-Learning) for your Laravel app
README 文档
README
xAPI Integration with Saudi NELC (National Center for e-Learning) for your Laravel app
Installation
You can install the package via composer:
composer require msaaq/nelc-laravel
After install the package you need to set API credentials in config/services.php file:
[
// ...
'nelc' => [
'key' => env('NELC_KEY'),
'secret' => env('NELC_SECRET'),
'platform' => [
'name' => env('NELC_PLATFORM_NAME'),
'identifier' => env('NELC_PLATFORM_IDENTIFIER'),
],
'sandbox' => env('NELC_SANDBOX', false),
],
]
Usage
Now you can send xAPI statements to NELC using Msaaq\NelcLaravel\Nelc facade:
use Msaaq\NelcLaravel\Nelc; app(Nelc::class)->sendStatement($statement);
Or
use Nelc; Nelc::sendStatement($statement);
Or from your controller like this:
use Msaaq\NelcLaravel\Nelc; class MyController extends Controller { public function index(Request $request, Nelc $nelc) { $nelc->sendStatement($statement); } }
Statements
For more information about the statements, please visit nelc-xapi-php-sdk
统计信息
- 总下载量: 13.24k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-14