webimpress/safe-writer

Tool to write files safely, to avoid race conditions

Fund package maintenance!
michalbundyra

Installs: 26 941 338

Dependents: 21

Suggesters: 0

Security: 0

Stars: 374

Watchers: 7

Forks: 9

Open Issues: 3

2.2.0 2021-04-19 16:34 UTC

README

Unit Tests Coding Standards Static Analysis Coverage Status

Write files safely to avoid race conditions when the same file is written multiple times in a short time period.

Installation

Using composer:

composer require webimpress/safe-writer

Usage

use Webimpress\SafeWriter\FileWriter;

$targetFile = __DIR__ . '/target-file.php';
$content = "<?php\nreturn " . var_export($data, true) . ';';

FileWriter::writeFile($targetFile, $content);

If something goes wrong exception (instance of Webimpress\SafeWriter\Exception\ExceptionInterface) will be thrown.