diff --git a/lib/IPicoPlugin.php b/lib/IPicoPlugin.php new file mode 100644 index 0000000..2a9e284 --- /dev/null +++ b/lib/IPicoPlugin.php @@ -0,0 +1,97 @@ + required plugins + */ + public function getDependencies(); + + /** + * Returns a list of plugins which depend on this plugin + * + * @return array dependant plugins + */ + public function getDependants(); + + /** + * Returns the plugins instance of Pico + * + * @return Pico the plugins instance of Pico + */ + public function getPico(); +}