-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
63 lines (63 loc) · 1.38 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
60
61
62
63
{
"name": "codesvault/howdy-qb",
"description": "Mysql Query Builder for WordPress",
"version": "1.6.4",
"minimum-stability": "stable",
"scripts": {
"test": "phpunit",
"phpcs": "phpcs ",
"phpcbf": "phpcbf ",
"post-package-install": "phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
},
"autoload": {
"psr-4": {
"CodesVault\\Howdyqb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodesVault\\Howdyqb\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "CodesVault",
"email": "codesvault@gmail.com"
},
{
"name": "Keramot UL Islam",
"email": "keramotul.islam@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.4",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/php-compatibility": "^9.3"
},
"keywords": [
"wordpress",
"database",
"query builder",
"pdo",
"mysqli",
"query",
"builder",
"mysql",
"wp"
],
"archive": {
"exclude": [
".editorconfig",
".gitignore",
"tests",
"phpunit.xml",
"phpcs.xml"
]
}
}