Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nokitakaze/php-mutex
Mutex implementation
https://github.com/nokitakaze/php-mutex
Last synced: about 2 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-22T18:51:50.000Z (over 2 years ago)
- Last Synced: 2024-03-30T02:41:48.759Z (10 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
[![Build Status](https://secure.travis-ci.org/nokitakaze/php-mutex.png?branch=master)](http://travis-ci.org/nokitakaze/php-mutex)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/nokitakaze/php-mutex/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/nokitakaze/php-mutex/)
![Code Coverage](https://scrutinizer-ci.com/g/nokitakaze/php-mutex/badges/coverage.png?b=master)## Usage
At first
```bash
composer require nokitakaze/mutex
```And then
```php
require_once 'vendor/autoload.php';
$mutex = new FileMutex([
'name' => 'foobar',
]);
```