-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
36 lines (36 loc) · 1.02 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
{
"name": "swissspidy/preferred-languages",
"type": "wordpress-plugin",
"description": "Choose languages for displaying WordPress in, in order of preference.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pascal Birchler",
"email": "[email protected]",
"homepage": "https://pascalbirchler.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.20",
"ext-json": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"roave/security-advisories": "dev-latest",
"wp-coding-standards/wpcs": "^2.1",
"yoast/phpunit-polyfills": "^1.0.0"
},
"config": {
"platform": {
"php": "5.6.20"
}
},
"scripts": {
"format": "vendor/bin/phpcbf --report-summary --report-source .",
"lint": "vendor/bin/phpcs --report-summary --report-source .",
"test": "vendor/bin/phpunit",
"test:multisite": "vendor/bin/phpunit -c phpunit-multisite.xml.dist"
}
}