xtain / symfony-lock-flysystem
There is no license information available for the latest version (v0.9.1) of this package.
Flysystem implementation for symfony/lock component
v0.9.1
2018-07-30 11:12 UTC
Requires
- php: >=5.3.9
- league/flysystem: ~1.0
- symfony/lock: ~3.4|~4.0
Requires (Dev)
- phpunit/phpunit: 4.*
This package is auto-updated.
Last update: 2024-10-10 05:06:40 UTC
README
This adapter allows you to use any flysystem filesystem instance as store for the symfony/lock component.
Installation
composer require xtain/symfony-lock-flysystem
Usage
use XTAIN\Flysystem\Lock\FlysystemStore; use League\Flysystem\Filesystem; use League\Flysystem\Adapter\Local; use Symfony\Component\Lock\Factory; $filesystem = new Filesystem(new Local(sys_get_temp_dir())); $factory = new Factory(new FlysystemStore($filesystem)); $lock = $factory->createLock('test', 5); $lock->acquire(); sleep(4); $lock->refresh(); sleep(4); $lock->refresh(); $lock->isExpired() === false;