-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 2.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ndigitals/wp-local-media-proxy",
"description": "Proxy images on a local development WordPress site from a remote server.",
"homepage": "https://github.com/ndigitals/wp-local-media-proxy",
"type": "wordpress-muplugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Tim Nolte",
"email": "tim.nolte@ndigitals.com"
}
],
"keywords": [
"WordPress",
"media",
"proxy"
],
"support": {
"issues": "https://github.com/ndigitals/wp-local-media-proxy/issues"
},
"config": {
"platform": {
"php": "7.4"
},
"optimize-autoloader": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"boxuk/wp-muplugin-loader": true
}
},
"require": {
"php": ">=7.4.0",
"composer/installers": "^1.0|^2.1",
"boxuk/wp-muplugin-loader": "^2.0"
},
"require-dev": {
"php": ">=7.4.0",
"squizlabs/php_codesniffer": "^3.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "^1.7",
"phpstan/extension-installer": "^1.1",
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"php-stubs/wordpress-stubs": "^5.6",
"sensiolabs/security-checker": "^6.0",
"roave/security-advisories": "dev-master",
"phpro/grumphp": "^1.5"
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
],
"post-update-cmd": [
"@install-codestandards"
],
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan",
"lint": "vendor/bin/phpcs --report=full",
"lint-fix": "vendor/bin/phpcbf",
"analyze": "vendor/bin/phpstan analyze"
}
}