-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "ekamran/wp-cli-http-proxy-command",
"type": "wp-cli-package",
"description": "Configure an opt-in HTTP proxy for WordPress and WP-CLI HTTP helper requests.",
"homepage": "https://github.com/ekamran/wp-cli-http-proxy-command",
"license": "MIT",
"require": {
"php": ">=7.2.24",
"wp-cli/wp-cli": "^2.12 || ^3.0"
},
"require-dev": {
"wp-cli/wp-cli-tests": "^5"
},
"config": {
"process-timeout": 7200,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"lock": false
},
"autoload": {
"files": [
"http-proxy-command.php"
],
"psr-4": {
"WP_CLI\\HttpProxy\\": "src/"
}
},
"extra": {
"commands": [
"http-proxy"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"behat": "run-behat-tests",
"phpcs": "phpcs",
"phpstan": "phpstan analyse --no-progress --memory-limit=512M",
"lint": "find http-proxy-command.php src -name '*.php' -print0 | xargs -0 -n1 php -l",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@behat"
]
}
}