tomzx/file-tracker

Track files for changes.

v0.1.0 2016-01-24 04:24 UTC

This package is auto-updated.

Last update: 2024-04-10 06:17:18 UTC


README

License Latest Stable Version Latest Unstable Version Build Status Code Quality Code Coverage Total Downloads

Track files for changes.

Getting started

<?php

require_once 'vendor/autoload.php';

$bomFilename = '.bom.json';
$tracker = new \tomzx\FileTracker\Tracker($bomFilename);

$files = 'README.md';
if ($tracker->hasChanged($files)) {
	echo 'README changed!' . PHP_EOL;
}

// Update the hash of the given files
$tracker->track($files);

$files = ['composer.json', 'composer.lock'];
if ($tracker->hasChanged($files)) {
	echo 'Run composer!' . PHP_EOL;
}

// Update the hash of the given files
$tracker->track($files);

// Store the latest hash in .bom.json
$tracker->save();

$files = ['.gitignore'];
$changes = $tracker->changedFiles($files);
if ($changes) {
	echo 'Gitignore was changed' . PHP_EOL;
}

// Only update the hash of .gitignore if it changed
$tracker->track(array_keys($changes));

License

The code is licensed under the MIT license. See LICENSE.