-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
46 lines (46 loc) · 1.22 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
{
"name": "igor/wp_cli_secure_command",
"description": "Manages WordPress security rules in .htaccess and/or nginx.conf files",
"homepage": "https://github.com/igorhrcek/wp-cli-secure-command",
"license": "MIT",
"authors": [
{
"name": "Igor Hrcek",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"wp-cli/wp-cli": "^2.5"
},
"autoload": {
"psr-4": {
"WP_CLI_Secure\\": "src/"
},
"files": [ "secure-command.php" ]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"vlucas/phpdotenv": "^5.4",
"wp-cli/wp-cli-bundle": "*",
"wp-cli/wp-cli-tests": "^3.1"
},
"support": {
"issues": "https://github.com/igorhrcek/wp-cli-secure-command/issues"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}