-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 882 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
33
34
35
36
37
38
39
{
"name": "byjg/anydataset-nosql",
"description": "A NoSql abstraction dataset. Anydataset is an agnostic data source abstraction layer in PHP.",
"autoload": {
"psr-4": {
"ByJG\\AnyDataset\\NoSql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.1 <8.4",
"ext-curl": "*",
"aws/aws-sdk-php": "3.*",
"byjg/cache-engine": "^5.0",
"byjg/anydataset": "^5.0",
"byjg/anydataset-array": "^5.0",
"byjg/serializer": "^5.0",
"byjg/webrequest": "^5.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.9"
},
"suggest": {
"ext-mongodb": "*",
"byjg/cache-engine": "^5.0"
},
"provide": {
"byjg/anydataset-implementation": "1.0"
},
"license": "MIT"
}