Supported Versions: PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL hash >= 1.1
Generate a hash value using the contents of a given file
<?php hash_file(    string $algo,    string $filename,    bool $binary = false,    array $options = []): string|false
<?php use Pest\Bootstrappers\BootOverrides;



test('versions', function (string $vendorPath, string $expectedHash) {

    expect(hash_file('sha256', $vendorPath))->toBe($expectedHash);

})->with(function () {

    foreach (BootOverrides::FILES as $hash => $file) {

        $path = implode(DIRECTORY_SEPARATOR, [