One liner that explains the plugin
You can install the plugin by uploading it in the WordPress Admin or via composer
.
composer require woda/wp-{plugin-name}
If you installed the plugin via composer
you will have to initialize it yourself to be able to use it. Add this to your theme's function file
Woda\WordPress\{PluginName}\Init::init($settings);
add_filter('woda_{plugin_name}_settings', static function($settings) {
return [];
}, 10, 1);