-
Notifications
You must be signed in to change notification settings - Fork 2
Getting Started
ImperaZim edited this page Jun 21, 2026
·
1 revision
This page is the shortest path to a working EasyLibrary 3.x server.
- PocketMine-MP 5.x.
- PHP 8.2 or newer.
- EasyLibrary 3.0.0-dev while the 3.x migration is still in development.
- Restart access. Package-backed providers are discovered during PMMP boot.
Install EasyLibrary.phar, start the server, then run:
/easylibrary doctor
/easylibrary packages doctor
/easylibrary config doctor
At minimum, every doctor should report Problems: 0.
| Need | Recommended provider |
|---|---|
| One manager plugin owns official libs | Package-backed packages |
| A library must be an independent plugin | Standalone PHAR |
| Old 2.x full-bundle behavior | Stay on 2.x while migrating |
Do not keep standalone and package-backed copies active long-term for the same library. Mixed mode exists to make migration safe.
Package operations are dry-run by default:
/easylibrary packages install libcommand
To write files, enable package writes in config and repeat with confirm:
/easylibrary packages install libcommand stable confirm
restart server
/easylibrary packages doctor
Only hard-depend on EasyLibrary when your plugin cannot run without it:
depend:
- EasyLibraryUse soft dependencies for optional integrations:
softdepend:
- EasyLibrary
- LibCommand
- LibPlaceholder
- LibWorld- Package Manager
- Package Backed Plugins
- Standalone vs Package
- Package Switch and Migration
- Package Doctor
- Package Recovery
- Proxy Troubleshooting