Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ndlano/h5p-caretaker
- Owner: NDLANO
- License: mit
- Created: 2024-05-31T18:22:31.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-10-28T12:23:15.000Z (11 days ago)
- Last Synced: 2024-10-28T15:20:56.038Z (11 days ago)
- Topics: h5p
- Language: PHP
- Homepage:
- Size: 179 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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"
}
```