-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (54 loc) · 1.54 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
{
"name": "motivast/polylang-string-extractor",
"description": "Polylang String Extractor is a plugin provided for extract translatable strings from WordPress functions to Polylang.",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Motivast",
"email": "support@motivast.com"
}
],
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require": {
"gettext/gettext": "^4.4"
},
"require-dev": {
"php": ">=5.6.0",
"phing/phing": "2.16.0",
"pear/http_request2": "2.3.0",
"wp-cli/wp-cli": "1.5.0",
"phpunit/phpunit": "6.5.7",
"10up/wp_mock": "0.3.0",
"squizlabs/php_codesniffer": "3.2.3",
"wimg/php-compatibility": "8.1.0",
"wp-coding-standards/wpcs": "0.14.1",
"sebastian/phpcpd": "3.0.0",
"pdepend/pdepend": "2.2.4",
"phploc/phploc": "4.0.0",
"phpmd/phpmd": "2.4.2",
"wpackagist-plugin/polylang": "2.3.3",
"wpackagist-theme/twentyseventeen": "1.4.0"
},
"extra": {
"installer-paths": {
"wordpress/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wordpress/wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"scripts": {
"post-install-cmd": [
"./vendor/bin/phing wp:download",
"./vendor/bin/phing setup"
],
"post-update-cmd": [
"./vendor/bin/phing wp:download",
"./vendor/bin/phing setup"
]
}
}