-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
38 lines (38 loc) · 853 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": "krugozor/database",
"description": "PHP class library for simple, convenient, fast and safe work with MySql database, using PHP mysqli extension and imitation of prepared queries.",
"type": "library",
"homepage": "https://github.com/Vasiliy-Makogon/Database",
"keywords": [
"mysql",
"mysqli",
"ext-mysqli",
"database",
"placeholder",
"placeholders",
"prepare statement",
"mysql class",
"mysql database class",
"mysql database php class",
"mysql db",
"mysql db class",
"php class mysql",
"php class mysql database",
"php class database"
],
"require": {
"php": ">=8.0",
"ext-mysqli": "*",
"ext-mbstring": "*"
},
"authors": [
{
"name": "Vasiliy Makogon"
}
],
"autoload": {
"psr-4": {
"Krugozor\\Database\\": "src/"
}
}
}