diff --git a/composer.json b/composer.json index b041b7f8f..97d291c3a 100644 --- a/composer.json +++ b/composer.json @@ -94,7 +94,7 @@ }, "suggest": { "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", - "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch", "patchwork/jsqueeze": "For minifying JS files in taskMinify", "natxet/cssmin": "For minifying CSS files in taskMinify" }, diff --git a/src/Task/Base/Watch.php b/src/Task/Base/Watch.php index 7e1c210ab..6eeca6b47 100644 --- a/src/Task/Base/Watch.php +++ b/src/Task/Base/Watch.php @@ -101,7 +101,7 @@ public function monitor($paths, \Closure $callable, $events = 2) public function run() { if (!class_exists('Lurker\\ResourceWatcher')) { - return Result::errorMissingPackage($this, 'ResourceWatcher', 'henrikbjorn/lurker'); + return Result::errorMissingPackage($this, 'ResourceWatcher', 'totten/lurkerlite'); } $watcher = new ResourceWatcher();