tomzx / file-tracker
Track files for changes.
v0.1.0
2016-01-24 04:24 UTC
Requires
- php: >=5.5.0
Requires (Dev)
- phpunit/phpunit: ~4
This package is auto-updated.
Last update: 2024-11-10 07:37:48 UTC
README
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.