Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pixelwhiz/formapi

Simple API for creating forms for MCPE clients (PocketMine only)
https://github.com/pixelwhiz/formapi

formapi pocketmine-plugins

Last synced: about 21 hours ago
JSON representation

Simple API for creating forms for MCPE clients (PocketMine only)

Awesome Lists containing this project

README

        

# FormAPI

Simple API for creating forms for MCPE clients (PocketMine only)

## Including in other plugins

### As a plugin
This library can be loaded as a plugin phar. You can use the [`depend`](https://doc.pmmp.io/en/rtfd/developer-reference/plugin-manifest.html#depend) key in `plugin.yml` to require its presence.

### As a virion
This library supports being included as a [virion](https://github.com/poggit/support/blob/master/virion.md).

#### Virion v1
If you use [Poggit](https://poggit.pmmp.io) to build your plugin, you can add it to your `.poggit.yml` like so:

```yml
projects:
YourPlugin:
libs:
- src: jojoe77777/FormAPI/libFormAPI
version: ^2.1.1
```
#### Virion v3
In your `composer.json` add an entry to the `require` attribute, like so:

```diff
{
"name": "author/project",
"require": {
+ "jojoe77777/formapi": "^2.1.0",
"pmmp/pocketmine-mp": "^4.0.0
}
}
```