Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nokitakaze/php-mutex

Mutex implementation
https://github.com/nokitakaze/php-mutex

Last synced: about 2 months ago
JSON representation

Mutex implementation

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',
]);
```