Plugin Model

Phlix plugins implement LifecycleInterface and ship a manifest file. Drop your plugin into the plugins/ directory and the loader picks it up automatically.

plugins/
├── my-plugin/
│ ├── manifest.json
│ └── src/
│ └── MyPlugin.php

Ecosystem Plugins

Browse the phlix-plugin-example for a reference metadata-provider plugin that demonstrates the full plugin lifecycle.

  • phlix-plugin-example

    Reference metadata-provider plugin with full lifecycle implementation

Write Your Own

Implement LifecycleInterface, create a manifest, and drop it in. See the plugin example for the smallest working starter.

Ready to build?

Check the docs for the plugin API reference.

Read the docs