derhasi / tempdirectory
Provides a representation of a temp directory that will destroy itself.
0.1.5
2017-02-03 10:01 UTC
Requires (Dev)
- composer/composer: 1.0.*@dev
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2026-02-28 23:59:02 UTC
README
Provides a temporary directory object, that will kill remove the whole directory on destruction or shutdown.
Installation
Simpyl require with composer: composer require --dev derhasi/tempdirectory.
Usage
Example from composer-preserver-paths:
$workingDirectory = new TempDirectory('path-preserver-test-working'); // Create directory to test. $folder1 = $this->workingDirectory->getPath('folder1'); mkdir($folder1); $file1 = $this->workingDirectory->getPath('file1.txt'); file_put_contents($file1, 'Test content');