-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (53 loc) · 1.47 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
{
"name": "bitapps/wp-validator",
"description": "WordPress Validation and Sanitization Library",
"type": "library",
"homepage": "https://bitapps.pro",
"license": "MIT",
"keywords": ["validation","form-validation", "input-validation","input-sanitization", "PHP-validation"],
"support": {
"issues": "https://github.com/Bit-Apps-Pro/wp-validator/issues",
"source": "https://github.com/Bit-Apps-Pro/wp-validator"
},
"authors": [
{
"email": "developer@bitcode.pro",
"name": "BitApps"
}
],
"autoload": {
"psr-4": {
"BitApps\\WPValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitApps\\WPValidator\\Tests\\": ["tests"]
}
},
"scripts":{
"test:unit":"./vendor/bin/pest --testdox --colors=always tests/ --exclude-group db",
"compat": "./vendor/bin/phpcs -p ./src --standard=PHPCompatibility --runtime-set testVersion 7.2",
"rector": "./vendor/bin/rector process --dry-run"
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"pestphp/pest": "^2.18",
"squizlabs/php_codesniffer":"*",
"phpcompatibility/php-compatibility": "*",
"rector/rector": "^1.2"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": false
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}