-
Notifications
You must be signed in to change notification settings - Fork 63
/
composer.json
49 lines (49 loc) · 1.36 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
{
"name" : "humanmade/wordpress-importer",
"description" : "WordPress importer plugin",
"license" : "GPLv2",
"authors" : [
{
"name" : "Contributors",
"homepage" : "https://github.com/humanmade/WordPress-Importer/graphs/contributors"
}
],
"type" : "wordpress-plugin",
"minimum-stability" : "dev",
"prefer-stable" : true,
"support" : {
"wiki" : "https://github.com/humanmade/WordPress-Importer/wiki",
"source" : "https://github.com/humanmade/WordPress-Importer/releases",
"issues" : "https://github.com/humanmade/WordPress-Importer/issues"
},
"keywords" : [
"wordpress",
"plugin",
"importer"
],
"require" : {
"php" : ">=5.2",
"composer/installers" : "~1.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-master",
"squizlabs/php_codesniffer": "~2.9",
"fig-r/psr2r-sniffer": "~0.4"
},
"autoload" : { },
"autoload-dev" : { },
"extra" : {
"branch-alias" : {
"dev-dev" : "0.1.x-dev"
},
"installer-paths" : {
"vendor/{$name}" : [
"type:wordpress-plugin"
]
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
}
}