Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ndlano/h5p-caretaker

Tool that is supposed to help people take care of H5P content types
https://github.com/ndlano/h5p-caretaker

h5p

Last synced: about 5 hours ago
JSON representation

Tool that is supposed to help people take care of H5P content types

Awesome Lists containing this project

README

        

# H5P Caretaker
Library that is supposed to help people take care of H5P content types.

## Installation
This library is not meant to be used standalone. The common use case is to
use it as a dependency for your own application, e.g. inside a plugin of some
kind or as a standalone application.

In your own project, you can use common `composer` practices to use this library.
For now, it is not on packagist yet, so you will need to fetch the sources from
github like so: Inside your `composer.json` file, ensure that the repository is set
and that `require` is set to the library. Change "dev-master" to some particular commit if
you need an older version explicitly.

```
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ndlano/h5p-caretaker"
}
],
"require": {
"ndlano/h5p-caretaker": "dev-master"
}
```