-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.17 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
{
"name": "beapi/wp-http-blocklist",
"description": "Block unwanted HTTP requests with a deny list",
"minimum-stability": "stable",
"license": "GPL-2.0",
"authors": [
{
"name": "BeAPI",
"email": "technique@beapi.fr"
}
],
"type" : "wordpress-plugin",
"require" : {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"composer/installers": "^1.10"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp-shim": "^1.3",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.3",
"overtrue/phplint": "^2.3",
"wp-phpunit/wp-phpunit": "^6.5",
"yoast/phpunit-polyfills": "^1.1.0"
},
"scripts": {
"cs": "./vendor/bin/phpcs",
"cbf": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
}
}
}