-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 976 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
{
"name": "simbiat/database",
"type": "library",
"keywords": [
"database",
"php",
"pdo"
],
"description": "Set of classes for database pool and helper.",
"homepage": "https://github.com/Simbiat/database",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Dmitry Kustov",
"email": "simbiat@outlook.com",
"homepage": "https://www.simbiat.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"simbiat/sand-clock": "*",
"ext-pdo": "*",
"ext-mbstring": "*"
},
"suggest": {
"simbiat/cute-bytes": "Allows to present bytes in human-readable format"
},
"autoload": {
"psr-4": {
"Simbiat\\Database\\": "src/"
}
},
"support": {
"issues": "https://github.com/Simbiat/database/issues",
"source": "https://github.com/Simbiat/database"
}
}