Download the PHP package brnysn/laravel-h5p without Composer
On this page you can find all versions of the php package brnysn/laravel-h5p. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download brnysn/laravel-h5p
More information about brnysn/laravel-h5p
Files in brnysn/laravel-h5p
Package laravel-h5p
Short Description H5P integration for Laravel without any additional dependencies.
License MIT
Informations about the package laravel-h5p
Headless H5P Laravel API
Forked from https://github.com/EscolaLMS
Description
This package provides a Laravel API for interacting with H5P content without installing unrelated dependencies.
Main repository requires 8 unrelated packages - most of them are escolalms dependencies - to be installed:
- EscolaLms/core
- EscolaLms/auth
- EscolaLms/settings
- EscolaLms/files
- EscolaLms/categories
- EscolaLms/model-fields
- spatie/permission
- laravel/socialite
Original Documentation
Features
The lib allows headlessly
- play all h5p content - exposed all essential data, yet player is needed
- edit all h5p content - exposed all essential data, yet editor is needed
- CRUD libraries
- CRUD content
- upload library from
.h5p
file - upload content from
.h5p
file
See Swagger documented endpoints.
Some tests can also be a great point of start.
To play the content you can use EscolaLMS H5P Player
Install
composer require brnysn/headless-h5p
php artisan migrate
php artisan h5p:storage-link
see below
Storage links
You need to publish many of files to be availabe as public link.
php artisan h5p:storage-link
which creates a symbolic link from storage/app/h5
and vendor/h5p/h5p-core
and vendor/h5p/h5p-editor
to be accesible to public, as follows
Cors
All the endpoints need to be accesible from other domains, so CORS must be properlly set.
Except of endpoints assets must expose CORS headers as well. You achive that by setting Apache/Nginx/Caddy/Whatever settings - below is example for Nginx for wildcard global access.
Authorisation
Most of the endpoints require authorisation, this is possible with laravel passport
There is a seeder to must be run in order to authrize
User model is taken from Auth package.
Seeder
To seed content and library
You can seed library and content with build-in seeders as command that are accessible with
php artisan h5p:seed
to add just librariesphp artisan h5p:seed --addContent
to add content with libraries
Road map
- rewrite h5p core in a way like luminare in typescript
All versions of laravel-h5p with dependencies
bensampo/laravel-enum Version >=2.0
laravel/framework Version ^8|^9
h5p/h5p-core Version ^1|dev-master
h5p/h5p-editor Version ^1|dev-master