Symbiosis is a drop-in event driven plugin architecture.
The goal is to allow anyone to create a plugin structure for their existing code base using an event oriented system. The secondary benefit of using Symbiosis is that the event structure can be used apart from the plugin structure.
PHP 7.2
- Add as a composer dependency or install directly from composer.
- That's it!
- Run
composer install --dev. - Run
./vendor/bin/phpunit.
<?php
namespace \YourApp\Plugin;
use \Zumba\Symbiosis\Framework\Plugin,
\Zumba\Symbiosis\Event\EventManager,
\Zumba\Symbiosis\Framework\Registerable;
class SamplePlugin extends Plugin implements Registerable
{
public function getEvents()
{
return [
'sample.someevent' => function($event) {
print_r($event->data());
});
];
}
}<?php
use \Zumba\Symbiosis\Plugin\PluginManager;
// Somewhere in your application bootstrap, load your plugins
$pluginManager = new PluginManager(
'/path/to/your/plugin/directory', // Path to where you stored your plugins
'YourApp\Plugin' // namespace defined in your plugins (see example above)
);
$pluginManager->loadPlugins();<?php
use \Zumba\Symbiosis\Event\Event;
// Somewhere in your app, trigger plugins listening to event
$pluginManager->trigger(new Event('sample.someevent', ['ping' => 'pong']));Array
(
[ping] => pong
)As of v1.2, event registries have been added to allow for separation of events. This allows for "namespacing" your event registries. The EventManager remains backwards compatible as now the EventManager creates a static instance of an EventRegistry. Since the event structure is loosely coupled in the Plugin architecture, this allows for namespacing your event registries per plugin.
<?php
$registry1 = new \Zumba\Symbiosis\Event\EventRegistry();
$registry2 = new \Zumba\Symbiosis\Event\EventRegistry();
$registry1->register('sample.someevent', function ($event) {
print_r($event->data());
});
$registry2->register('sample.someevent', function ($event) {
echo "Separate registry\n";
print_r($event->data());
});
$event = new \Zumba\Symbiosis\Event\Event('sample.someevent', array('ping' => 'pong'));
$registry1->dispatch($event);
// Prints:
// Array(
// [ping] => pong
// )
$registry2->dispatch($event);
// Prints:
// Separate registry
// Array(
// [ping] => pong
// )This library is compatible with PSR-14.
One caveat is that the
EventRegistryrequires registration of events that implement\Zumba\Symbiosis\Framework\EventInterfacewhich includes the\Psr\EventDispatcher\StoppableEventInterface.
EventRegistry implements:
\Psr\EventDispatcher\ListenerProviderInterface\Psr\EventDispatcher\EventDispatcherInterface
Event implements:
\Psr\EventDispatcher\StoppableEventInterface
See PSR-14 Event Dispatcher Documentation for more details.
