-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
59 lines (59 loc) · 1.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "falseclock/dbd-php",
"type": "library",
"version": "3.1.1",
"description": "Database driver for PHP (PostgreSQL, MySQL, MSSQL, OData, YellowERP, 1С)",
"keywords": [
"pdo",
"dbd",
"dbi",
"sql",
"cache",
"driver",
"postgre",
"PostgreSQL",
"MySQL",
"MSSQL",
"Microsoft SQL Server",
"OData",
"1С",
"1C",
"YellowERP",
"Yellow ERP"
],
"license": "MIT",
"authors": [
{
"name": "Nurlan Mukhanov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"psr/simple-cache": "^1.0.1",
"openlss/lib-array2xml": "^1.0.0",
"falseclock/dbd-php-entity": "^3.0.0",
"ext-json": "*",
"ext-simplexml": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "10.2.2",
"php-coveralls/php-coveralls": "^2.7.0"
},
"suggest": {
"ext-memcache": "Required to support Memcached",
"ext-pgsql": "Required to support PostgreSQL database",
"ext-curl": "Required to support OData requests"
},
"autoload": {
"psr-4": {
"DBD\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DBD\\Tests\\": "tests/"
}
}
}