An extension support send desktop notify base on JoliNotif wrapper for Yii2 console controller. Works on Linux, Windows & MacOS.
Require Yii2 desktop notifier using Composer:
composer require vxm/yii2-desktop-notifier
use yii\console\Controller;
/**
* @method void desktopNotify(string $title, string $body, $icon = null)
*/
class TestController extends Controller
{
public function actionTest()
{
$this->desktopNotify('VXM', 'test message');
}
}