-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 899 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "kradwhite/db",
"description": "Building sql queries. Executing sql queries. Simple and lightweight.",
"keywords": ["sql", "query builder", "mysql", "postgresql"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksandrov Artem",
"email": "kradwhite@mail.ru"
}
],
"require": {
"php": "~7.4",
"ext-pdo": "*",
"kradwhite/language": "*"
},
"autoload": {
"psr-4": {
"kradwhite\\db\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"kradwhite\\tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-db": "^1.0"
}
}