FEATURE: Composer.json & gitignore initialized
.gitignore
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "higidi/ninja-mutex", | |||
"description": "Simple to use mutex implementation that can use directory, flock, memcache, memcached, mysql or redis (predis) for locking", | |||
"license": "MIT", | |||
"homepage": "https://git.higidi.com/higidi/ninja-mutex", | |||
"keywords": [ | |||
"mutex", | |||
"lock", | |||
"locking", | |||
"flock", | |||
"memcache", | |||
"memcached", | |||
"mysql", | |||
"redis" | |||
], | |||
"authors": [ | |||
{ | |||
"name": "Daniel Hürtgen", | |||
"email": "daniel@higidi.de", | |||
"homepage": "http://www.higidi.com", | |||
"role": "Developer" | |||
} | |||
], | |||
"support": { | |||
"issues": "https://git.higidi.com/higidi/ninja-mutex/issues", | |||
"source": "https://git.higidi.com/higidi/ninja-mutex" | |||
}, | |||
"require": { | |||
"php": ">=5.3.0" | |||
} | |||
} |
Please register or sign in to comment