-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
48 lines (48 loc) · 1.55 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
{
"name": "abrain/einsatzverwaltung",
"description": "Wordpress-Plugin zur Verwaltung und Darstellung von Einsatzberichten der Feuerwehr und anderer Hilfsorganisationen",
"homepage": "https://einsatzverwaltung.org",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Andreas Brain",
"email": "dev@abrain.de",
"homepage": "https://www.abrain.de",
"role": "Developer"
}
],
"support": {
"email": "support@einsatzverwaltung.org",
"issues": "https://github.com/abrain/einsatzverwaltung/issues",
"forum": "https://wordpress.org/support/plugin/einsatzverwaltung",
"source": "https://github.com/abrain/einsatzverwaltung",
"docs": "https://einsatzverwaltung.org/dokumentation/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "phpcs",
"test": "XDEBUG_MODE=coverage phpunit",
"integration-test": "XDEBUG_MODE=coverage phpunit -c phpunit-integration.xml"
},
"require": {
"php": ">=7.1.0",
"ext-json": "*"
},
"require-dev": {
"phpmd/phpmd": "2.15.0",
"brain/monkey": "2.6.2",
"friendsofphp/php-cs-fixer": "3.64.0",
"php-cs-fixer/phpunit-constraint-isidenticalstring": "1.5.0",
"php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "1.5.0",
"phpcompatibility/php-compatibility": "9.3.5",
"yoast/phpunit-polyfills": "3.0.0",
"phpcompatibility/phpcompatibility-wp": "2.1.5",
"wp-coding-standards/wpcs": "3.1.0",
"phpunit/phpunit": "9.6.21"
}
}