-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
66 lines (66 loc) · 1.89 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
{
"name": "wpml/elasticpress",
"description": "WPML ElasticPress",
"license": "GPL-2.0-only",
"homepage": "https://wpml.org",
"type": "wordpress-plugin",
"authors": [
{
"name": "WPML",
"email": "[email protected]",
"homepage": "http://wpml.org"
}
],
"repositories": {
"otgs-build-tools-ci": {
"type": "vcs",
"url": "ssh://[email protected]:10022/shared/otgs-build-tools-ci.git"
},
"otgs-changelog": {
"type": "vcs",
"url": "ssh://[email protected]:10022/shared/otgs-changelog.git"
},
"wp-plugin-version": {
"type": "vcs",
"url": "ssh://[email protected]:10022/shared/otgs-wp-plugin-version.git"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"otgs/unit-tests-framework": "~1.2.0",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^3.0",
"squizlabs/php_codesniffer": "~3",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-coding-standards/wpcs": "^0"
},
"scripts": {
"make": [
"make githooks"
]
},
"autoload": {
"psr-4": {
"WPML\\ElasticPress\\": "src/"
}
},
"autoload-dev": {
"classmap": []
}
}