-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 929 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
39
40
41
42
43
44
{
"name": "rotaract/plugin-name",
"description": "",
"type": "wordpress-plugin",
"keywords": [
"plugin",
"rotaract",
"wordpress"
],
"homepage": "https://github.com/rotaract/plugin-name",
"readme": "README.adoc",
"license": "EUPL-1.2",
"authors": [
{
"name": "Niklas Zbick",
"role": "Developer"
},
{
"name": "Benno Bielmeier"
}
],
"support": {
"issues": "https://github.com/rotaract/plugin-name/issues",
"source": "https://github.com/rotaract/plugin-name"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.1"
},
"scripts": {
"lint": "phpcs . --standard=phpcs.xml",
"fix": "phpcbf . --standard=phpcs.xml"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/php-compatibility": "^9.3",
"editorconfig-checker/editorconfig-checker": "^10.6"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}