-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.16 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
{
"name": "bitapps/wp-kit",
"description": "A simple plugin framework",
"keywords": [
"framework",
"WordPress",
"wp"
],
"license": "GPL-2.0-or-later",
"archive": {
"exclude": [
".gitattributes",
".gitignore",
"lefthook.yml",
".php-cs-fixer.php",
"composer.lock",
".vscode",
".php-cs-fixer.cache",
"phpcs.xml"
]
},
"require": {
"bitapps/wp-validator": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"sirbrillig/phpcs-variable-analysis": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*"
},
"autoload": {
"psr-4": {
"BitApps\\WPKit\\": "./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-"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}