forked from arvenil/mutex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "socloz/ninja-mutex",
"description": "Simple to use mutex implementation that can use flock, memcache, memcached, mysql or redis for locking",
"homepage" : "https://github.com/arvenil/ninja-mutex",
"keywords" : ["mutex", "lock", "locking", "flock", "memcache", "memcached", "mysql"],
"license": "MIT",
"authors": [
{
"name": "Kamil Dziedzic",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"NinjaMutex": "src/"
}
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"mikey179/vfsStream": "v1.1.0",
"predis/predis": "v0.8.3",
"ext-memcache": "*",
"ext-memcached": "*",
"ext-pdo_mysql": "*"
},
"suggest" : {
"predis/predis" : "Create mutex using Predis (client library for Redis)",
"ext-memcache": "Create mutex using memcache extension",
"ext-memcached": "Create mutex using memcached extension",
"ext-pdo_mysql": "Create mutex using MySql"
}
}