PHP code example of fmihel / php-watch

1. Go to this page and download the library: Download fmihel/php-watch library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

fmihel / php-watch example snippets



$config=[
    'paths'=>['./tests/server/'],
    'exec'=>'./vendor/bin/phpunit --verbose tests/server'
    // Alert!! --------------------
    // on WINDOWS use absolute path
    //'exec'=>'c:/work/project/vendor/bin/phpunit --verbose tests/server'
    // ----------------------------
];    

$config=[
    'paths'=>[...], // список путей мониторинга 
    'exec'=>'',     // строка запуска, если произошли изменения
    'interval'=>2,  // интервал сканирования
    'limit'=>-1,    // кол-во сканирований, после которого скрипт
                    // остановится. -1 - бесконечно 
];    
bash
composer 
bash
php ./vendor/fmihel/php-watch/watch.php
watch.php [<CUSTOM-FILE-NAME>]
bash
php ./vendor/fmihel/php-watch/watch.php my.config.php