gonzalo123/fswatcher

PHP File System Watcher

dev-master 2012-11-26 19:24 UTC

This package is not auto-updated.

Last update: 2024-03-16 10:45:11 UTC


README

Filesystem watcher with PHP

Build Status

Actualy only works with Linux. Uses inotifywait to detect modifications and Événement to manage events

One usage example:

<?php
include __DIR__ . '/../vendor/autoload.php';

use FsWatcher\Watcher;
use Sh\Sh;

$directoryToWatch = './';
$sh = new Sh();

$watcher = Watcher::factory($directoryToWatch);
$watcher->registerExtensionToWatch('php');

$watcher->onSave(function ($file) use ($sh) {
    echo $sh->php("-l {$file}");
    echo "\n";
});

$watcher->onDelete(function ($file) {
    echo "DELETED: {$file}\n";
});

$watcher->onCreate(function ($file) {
    echo "CREATED: {$file}\n";
});

$watcher->start();