Download the PHP package xcesaralejandro/lti1p3 without Composer
On this page you can find all versions of the php package xcesaralejandro/lti1p3. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download xcesaralejandro/lti1p3
More information about xcesaralejandro/lti1p3
Files in xcesaralejandro/lti1p3
Package lti1p3
Short Description This package provides a simple integration for lti 1.3 with laravel
License MIT
Informations about the package lti1p3
Full documentation 🤓☝️
Usage
1.- Add the package to your project
composer require xcesaralejandro/lti1p3
2.- Publish the provider
php artisan vendor:publish --provider="xcesaralejandro\lti1p3\Providers\Lti1p3ServiceProvider" --force
3.- Add your administrator credentials in your .ENV
`
4.- Run migrations
``
5.- Complete the configuration file
After publishing our provider, we will have a file called lti1p3.php inside the config folder, there we will have to complete the configuration. Next I will leave the keys that are REQUIRED, the rest should be by default unless you understand that you are changing.
VERIFY_HTTPS_CERTIFICATE
If true, will not allow self-signed https certificates.
KID
An identifier invented by you, this will be used to identify the public key in the Json Web Tokens (JWT)
PRIVATE_KEY
A private RSA key
You can generate a new RSA private key of 2048 bit here: https://travistidwell.com/jsencrypt/demo/
Note
If you are using some reversible proxy it is possible that the package styles published by the provider will try to load with http instead of https, which produces an error. To fix the problem you can force the https scheme in your AppServiceProvider, adding ` in the boot method.
Important
I recommend you configure a local domain to develop, since when using JWT, the default domain (localhost), 127.0.0.1 or your current IP may not work correctly for signing.
Get started with development
The application will publish models and controller, you can start developing from there.
After registering a platform (LMS), the package will be in charge of synchronizing and updating all the data coming from the LMS or creating it if it does not exist. With this data we refer to the information of the platform, course, resource, user, etc.
Once the launch has concluded, the LtiController is called in its different methods depending on the final state of the flow.
`
For register platforms
Login in tool panel
https://YOUR_APP_LARAVEL_DOMAIN/lti1p3/login
(The access credentials are those configured in your .ENV (Point 3))
Tool JWKS endpoint
https://YOUR_APP_LARAVEL_DOMAIN/api/lti1p3/jwks
Tool connection
All the urls (except jwks) required on the respective platform are:
All versions of lti1p3 with dependencies
guzzlehttp/guzzle Version ^7.0.1
firebase/php-jwt Version ^6.10
ramsey/uuid Version ^4.1
laravel/framework Version >=11.0