zomarrd / pluginbuilderpmmp
Create a .phar of your PocketMine-MP plugin
1.0.0
2023-08-21 00:14 UTC
Requires
- ext-yaml: *
Requires (Dev)
- phpstan/phpstan: 1.11.x-dev
- thecodingmachine/phpstan-strict-rules: ^1.0@dev
This package is auto-updated.
Last update: 2024-10-13 11:02:11 UTC
README
The ultimate API for compiling your PocketMineMP plugins
Installation
Install Composer, and run this command in your project directory:
composer require zomarrd/pluginbuilderpmmp
Usage/Examples
1- Create a build.php
file in the pluginPath/build/ and add the following code.
CODE EXAMPLE
<?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();
CONSOLE OUTPUT
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
Extra
- You can modify the
PluginBuilder.php
class to compile your plugin files the way you want.
For Developers
If there are bugs, errors, or you want to suggest something, you can report it, or make a pull request.