forked from Automattic/phpcs-diff
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·54 lines (54 loc) · 1.62 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
{
"name": "otgs/phpcs-diff",
"description": "",
"homepage": "https://github.com/zaantar/phpcs-diff",
"type": "library",
"license": "GPL-2.0",
"version": "1.0.0-dev",
"authors": [
{
"name": "Jan Štětina",
"email": "[email protected]",
"homepage": "https://onthegosystems.com"
}
],
"require": {
"php": "^7",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "*",
"otgs/toolset-coding-standards": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"sebastian/diff": "^3.0",
"ulrichsg/getopt-php": "3.2.1",
"slowprog/composer-copy-file": "~0.2",
"sirbrillig/phpcs-variable-analysis": "^2.1"
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
},
"autoload": {
"classmap": [
"inc/"
]
},
"bin": [
"bin/phpcs-diff"
],
"extra": {
"copy-file": {
"vendor/wp-coding-standards/wpcs/WordPress": "standards/WordPress",
"vendor/wp-coding-standards/wpcs/WordPress-Core": "standards/WordPress-Core",
"vendor/wp-coding-standards/wpcs/WordPress-Docs": "standards/WordPress-Docs",
"vendor/wp-coding-standards/wpcs/WordPress-Extra": "standards/WordPress-Extra",
"vendor/sirbrillig/phpcs-variable-analysis/VariableAnalysis": "standards/VariableAnalysis",
"vendor/otgs/toolset-coding-standards/Toolset": "standards/Toolset",
"vendor/automattic/phpcs-neutron-standard/NeutronStandard": "standards/NeutronStandard"
}
},
"minimum-stability": "dev"
}