geniv/

nette-browser-sync

Nette 框架的浏览器同步组件

v1.0.5 2019-01-05 21:46 UTC

This package is auto-updated.

Last update: 2024-09-06 10:56:06 UTC


README

via: https://browsersync.io/

安装

$ composer require geniv/nette-browser-sync

"geniv/nette-browser-sync": "^1.0"

require

"php": ">=7.0",
"nette/nette": ">=2.4",
"geniv/nette-general-form": ">=1.0"

包含在应用程序中

neon 配置

services:
    - BrowserSync
#or    
    - BrowserSync(other url, other check url)

基本演示者

protected function createComponentBrowserSync(IBrowserSync $browserSync): IBrowserSync
{
    //$browserSync->setTemplatePath(__DIR__ . '/templates/browserSync.latte');
    //$browserSync->setCheckByUrl(false);
    return $browserSync;
}

用法

{control browserSync}