-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
88 lines (88 loc) · 2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mihdan/cyr2lat",
"description": "Cyr-To-Lat",
"license": "GPL-2.0-or-later",
"keywords": [
"cyrillic",
"latin",
"l10n",
"russian",
"rustolat",
"slugs",
"translations",
"transliteration",
"cyr2lat"
],
"homepage": "https://wordpress.org/plugins/cyr2lat/",
"type": "wordpress-plugin",
"authors": [
{
"name": "Sergey Biryukov",
"homepage": "https://profiles.wordpress.org/sergeybiryukov/"
},
{
"name": "Mikhail Kobzarev",
"email": "[email protected]",
"homepage": "https://www.kobzarev.com/"
},
{
"name": "Igor Gergel",
"email": "[email protected]",
"homepage": "https://kagg.eu/en/"
}
],
"support": {
"issues": "https://wordpress.org/support/plugin/cyr2lat"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"10up/wp_mock": "0.4.2 - 1.0.1",
"lucatume/function-mocker": "^2.0.0",
"phpunit/phpunit": "8.5.40 - 11.5.2",
"squizlabs/php_codesniffer": "^3.11.2",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1.5",
"wp-coding-standards/wpcs": "^3.1.0",
"php-coveralls/php-coveralls": "^v2.7.0"
},
"autoload": {
"psr-4": {
"CyrToLat\\": "src/php"
},
"classmap": [
"libs"
],
"files": [
"src/php/includes/deprecated.php"
]
},
"autoload-dev": {
"classmap": [
"tests/unit/Stubs"
],
"psr-4": {
"CyrToLat\\": "src/php",
"CyrToLat\\Tests\\Unit\\": "tests/unit"
}
},
"bin": [
"bin/update-tests"
],
"scripts": {
"pre-update-cmd": "update-tests",
"update-tests": "update-tests",
"revert-tests": "update-tests revert",
"phpcs": "vendor/bin/phpcs --colors --standard=phpcs.xml",
"unit": "vendor/bin/phpunit"
}
}