-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.19 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
40
41
{
"name": "ronolo/json-store",
"description": "A lightweight JSON document store, which can be queried like a NoSQL database.",
"keywords": ["file", "db", "document", "nosql", "json"],
"homepage": "http://github.com/ronolo/json-store",
"license": "MIT",
"authors": [
{
"name": "Ronald Locke"
}
],
"require": {
"php": ">= 7.2",
"ext-json": "*",
"league/flysystem": "^1.1",
"ronolo/json-query": "^1.2"
},
"require-dev": {
"ext-zlib": "*",
"phpunit/phpunit": "^8.4",
"league/flysystem-ziparchive": "^1.0",
"league/flysystem-memory": "^1.0",
"symfony/filesystem": "^4.3"
},
"suggest": {
"league/flysystem-ziparchive": "Allows to have a single ZIP file as database",
"league/flysystem-memory": "Allows to have a database in memory",
"league/flysystem-cached-adapter": "Allows to have a memory/persistent cache like database"
},
"autoload": {
"psr-4": {
"RoNoLo\\JsonStorage\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/src/",
"tests/integration"
]
}
}