-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 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
{
"name": "bitapps/wp-database",
"description": "A simple orm with wpdb",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"wpdb",
"database",
"WordPress"
],
"support": {
"issues": "https://github.com/Bit-Apps-Pro/wp-database/issues",
"source": "https://github.com/Bit-Apps-Pro/wp-database"
},
"authors": [
{
"email": "[email protected]",
"name": "Bit-Code-Developer"
}
],
"archive": {
"exclude": [
".gitattributes",
".gitignore",
"lefthook.yml",
".php-cs-fixer.php",
"composer.lock",
"/.vscode"
]
},
"require": {
"php": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"BitApps\\WPDatabase\\": "./src"
}
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"compat": "./vendor/bin/phpcs -p ./src --standard=PHPCompatibilityWP --runtime-set testVersion 7.4-"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"sirbrillig/phpcs-variable-analysis": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}