https://github.com/nokitakaze/php-mutex
Mutex implementation
https://github.com/nokitakaze/php-mutex
Last synced: 3 months ago
JSON representation
Mutex implementation
- Host: GitHub
- URL: https://github.com/nokitakaze/php-mutex
- Owner: nokitakaze
- License: apache-2.0
- Created: 2017-05-11T19:10:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-07-22T18:51:50.000Z (almost 3 years ago)
- Last Synced: 2025-03-01T07:36:56.711Z (4 months ago)
- Language: PHP
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mutex implementation
## Current status
### General
[](http://travis-ci.org/nokitakaze/php-mutex)
[](https://scrutinizer-ci.com/g/nokitakaze/php-mutex/)
## Usage
At first
```bash
composer require nokitakaze/mutex
```And then
```php
require_once 'vendor/autoload.php';
$mutex = new FileMutex([
'name' => 'foobar',
]);
```