-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 1.69 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
{
"name": "inpsyde/multilingualpress-yoast-seo-sync",
"description": "Extension boilerplate for MultilingualPress.",
"type": "wordpress-plugin",
"keywords": [
"bilingual",
"i18n",
"international",
"internationalization",
"l10n",
"lang",
"language",
"localization",
"multi",
"multilanguage",
"multilingual",
"multisite",
"network",
"translation",
"wordpress",
"wp"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Inpsyde GmbH",
"email": "[email protected]",
"homepage": "https://inpsyde.com",
"role": "Company"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/wp-cli/i18n-command"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2"
},
"require-dev": {
"brain/monkey": "2.2.*",
"inpsyde/php-coding-standards": "^0.13",
"mockery/mockery": "^0.9",
"phpunit/phpunit": "6.5.*",
"wp-cli/i18n-command": "2.0.*",
"squizlabs/php_codesniffer": "3.2.*",
"consolidation/robo": "1.3.*",
"leafo/scssphp": "^0.7",
"symfony/process": "^3.3.0 | <4.2"
},
"autoload": {
"psr-4": {
"Inpsyde\\MultilingualPress\\YoastSeoSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\MultilingualPress\\YoastSeoSync\\Tests\\Unit\\": "tests/php/unit"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}