-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
72 lines (72 loc) · 2.04 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": "inpsyde/search-and-replace",
"description": "Search & Replace data in your whole WordPress setup, backup and import your database, change table prefix or migrate your domain to another domain.",
"keywords": [
"wordpress",
"multisite",
"plugin",
"database"
],
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"homepage": "https://github.com/inpsyde/search-and-replace/",
"authors": [
{
"name": "Sven Hinse",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Rene Reimann",
"homepage": "http://rene-reimann.de",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Frank Bültge",
"homepage": "https://bueltge.de",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Guido Brand",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/inpsyde/search-and-replace/issues"
},
"require": {
"php": ">=5.6",
"ext-zlib": "*",
"ext-mysqli": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"brain/monkey": "^2",
"wp-coding-standards/wpcs": "^2",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpcompatibility/php-compatibility": "^9.1"
},
"scripts": {
"post-install-cmd": [
"@phpcs"
],
"post-update-cmd": [
"@phpcs"
],
"phpcs": "./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/phpcompatibility/php-compatibility/PHPCompatibility,vendor/phpcompatibility/phpcompatibility-wp/PHPCompatibilityWP,vendor/phpcompatibility/phpcompatibility-paragonie/PHPCompatibilityParagonieRandomCompat,vendor/phpcompatibility/phpcompatibility-paragonie/PHPCompatibilityParagonieSodiumCompat"
},
"autoload": {
"psr-4": {
"Inpsyde\\SearchReplace\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\SearchReplace\\Tests\\": "tests/UnitTests/",
"Inpsyde\\SearchReplace\\": "inc/"
}
}
}