Skip to content

Commit 8e5d1f7

Browse files
[FEATURE] Replace lurker package (#1007)
The watch task requires the package »henrikbjorn/lurker«. The dependencies of this package dont allow using Symfony 4. Last release of this package was 2016-03-16. So its abdandoned. Use the drop-in replacement package totten/lurkerlite instead. Installing this packsge will remove »henrikbjorn/lurker« automatically. Since the package is a designated drop-in replacement all existing methods in robo may stay the same. Closes #459 #956 #973
1 parent a9d110b commit 8e5d1f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
},
9595
"suggest": {
9696
"pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
97-
"henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
97+
"totten/lurkerlite": "For monitoring filesystem changes in taskWatch",
9898
"patchwork/jsqueeze": "For minifying JS files in taskMinify",
9999
"natxet/cssmin": "For minifying CSS files in taskMinify"
100100
},

src/Task/Base/Watch.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function monitor($paths, \Closure $callable, $events = 2)
101101
public function run()
102102
{
103103
if (!class_exists('Lurker\\ResourceWatcher')) {
104-
return Result::errorMissingPackage($this, 'ResourceWatcher', 'henrikbjorn/lurker');
104+
return Result::errorMissingPackage($this, 'ResourceWatcher', 'totten/lurkerlite');
105105
}
106106

107107
$watcher = new ResourceWatcher();

0 commit comments

Comments
 (0)