-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (56 loc) · 1.4 KB
/
composer.json
File metadata and controls
57 lines (56 loc) · 1.4 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
51
52
53
54
55
56
57
{
"name":"bea/bea-media-analytics",
"description":"Find where and how media are used across your site.",
"keywords":[
"uploads",
"sanitize",
"find",
"media",
"usage",
"find media",
"multisite",
"single site"
],
"homepage":"https://github.com/BeAPI/bea-media-analytics",
"authors":[
{
"name":"Be API",
"email":"technique@beapi.fr",
"homepage":"https://beapi.fr/"
}
],
"type":"wordpress-plugin",
"minimum-stability":"stable",
"license":"GPL-3.0+",
"require":{
"php":">=5.6.0",
"julien731/wp-dismissible-notices-handler":"1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"humanmade/psalm-plugin-wordpress": "^2.2",
"overtrue/phplint": "^9.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp-shim": "^2.0",
"vimeo/psalm": "^4.30",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
}
},
"scripts": {
"cs": "./vendor/bin/phpcs",
"cb": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm"
},
"scripts-descriptions": {
"cs": "Run PHP CodeSniffer on codebase using custom ruleset.",
"cb": "Run PHP Code Beautifier and Fixer on codebase using custom ruleset.",
"psalm": "Run psalm on codebase using custom ruleset.",
"phpunit": "Run PHP unit tests."
}
}