-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 999 Bytes
/
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
{
"name": "lloc/msls-select",
"description": "Transforms the output of the Multisite Language Switcher to an HTML select",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://it.wordpress.org/plugins/mslsselect/",
"require": {
"php": ">=7.4",
"composer/installers": "~1.9.0"
},
"autoload-dev": {
"classmap": [
"MslsSelect.php"
]
},
"require-dev": {
"phpunit/phpunit": "~9.6",
"brain/monkey": "2.*",
"phpstan/phpstan": "^1.8",
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/extension-installer": "^1.1"
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-html coverage",
"analyze": "vendor/bin/phpstan analyze",
"git-release": "bin/git-release.sh",
"build": [
"@git-release"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"phpstan/extension-installer": true
}
}
}