-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 1.03 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": "avtonom/semaphore-bundle",
"type": "symfony-bundle",
"description": "A generic locking Symfony bundle for PHP, that uses named locks for semaphore acquire and release, to guarantee atomicity",
"keywords": ["Symfony2", "bundle", "semaphore", "locking", "lock", "atomicity", "atom", "acquire", "release", "redis", "memcached", "sem", "flock"],
"homepage": "https://github.com/Avtonom/semaphore-bundle",
"license": "MIT",
"authors": [
{
"name": "Anton U",
"email": "avtonomspb@gmail.com"
}
],
"require": {
"php": ">=5.3.2",
"symfony/dependency-injection": ">=2.3.0",
"symfony/monolog-bundle": ">=2.0.7",
"zerkalica/semaphore": "~1.0"
},
"autoload": {
"psr-0": { "Avtonom\\SemaphoreBundle": "" }
},
"target-dir": "Avtonom/SemaphoreBundle",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"suggest": {
"snc/redis-bundle": "bundle integrates Predis and PhpRedis",
"predis/predis": "key_storage_classPredis"
}
}