The ultimate API for compiling your PocketMineMP plugins
Install Composer, and run this command in your project directory:
composer require zomarrd/pluginbuilderpmmp
1- Create a build.php
file in the pluginPath/build/ and add the following code.
<?php declare(strict_types=1);
// Necesario si usas Composer.
require_once __DIR__ . '/../vendor/autoload.php';
// Importar la clase PluginBuilder.
use zOmArRD\Builder\PluginBuilder;
// Crear una instancia de PluginBuilder.
$pluginBuilder = new PluginBuilder(dirname(__DIR__));
// Compilar el plugin.
$pluginBuilder->build();
Creating Phar file...
Added 2691 files to Phar
Phar created in 2.899 seconds
Phar size: 7082.07 KB
Phar created successfully!
Process finished with exit code 0
- You can modify the
PluginBuilder.php
class to compile your plugin files the way you want.
If there are bugs, errors, or you want to suggest something, you can report it, or make a pull request.