-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
32 lines (32 loc) · 889 Bytes
/
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
{
"name": "jamm/memory",
"require": {
"php": ">=5.3.0"
},
"suggest": {
"jamm/tester": "allows to run unit-tests"
},
"description": "Key-value storage in memory. As a storage can be used: APC, Redis, Memcache, Shared memory. All storage objects have one interface, so you can switch them without changing the working code. Contains PHP Redis client.",
"version": "1.0.0",
"keywords": ["caching", "race-condition", "dog-pile", "redis", "memcached", "apc", "memory", "shared memory"],
"support": {
"email": "[email protected]",
"source": "https://github.com/jamm/Memory"
},
"autoload": {
"psr-0": {
"Jamm\\Memory": "Jamm/Memory/lib"
}
},
"type": "library",
"license": "MIT",
"target-dir": "Jamm/Memory",
"authors": [
{
"name": "Eugene OZ",
"email": "[email protected]",
"homepage": "https://github.com/jamm/",
"role": "Developer"
}
]
}