-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (37 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
35
36
37
38
39
{
"name": "eftec/documentstoreone",
"description": "A flat document store for PHP that allows multiples concurrencies.",
"type": "library",
"keywords": ["php-library","php","database","file","mapreduce","bigdata"],
"homepage": "https://github.com/EFTEC/DocumentStoreOne",
"license": "LGPL-3.0-only",
"autoload": {
"psr-4": {
"eftec\\DocumentStoreOne\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"eftec\\tests\\": "tests/"
}
},
"authors": [
{
"name": "Jorge Castro Castillo",
"email": "[email protected]"
}],
"suggest": {
"ext-redis": "If you want to use redis for locks. It is not recommended becuase it's slow than folder",
"ext-apcu": "If you want to use apcu for locks. It is recommended",
"ext-igbinary": "Some examples could use it"
},
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"ext-redis": "*",
"ext-apcu":"*",
"phpunit/phpunit": "^8.5.13"
}
}