-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
42 lines (42 loc) · 970 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
40
41
42
{
"name": "byjg/anydataset-db",
"description": "Anydataset Database Relational abstraction. Anydataset is an agnostic data source abstraction layer in PHP.",
"autoload": {
"psr-4": {
"ByJG\\AnyDataset\\Db\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"TestDb\\": "testsdb/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.1 <8.4",
"ext-pdo": "*",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/log": "^1.1|^2.0|^3.0",
"byjg/uri": "^5.0",
"byjg/anydataset-array": "^5.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.9",
"byjg/cache-engine": "^5.0"
},
"suggest": {
"ext-curl": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"ext-oci8": "*",
"byjg/cache-engine": "^5.0"
},
"provide": {
"byjg/anydataset-implementation": "1.0"
},
"license": "MIT"
}