forked from aristath/kirki-telemetry-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.17 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
{
"name": "werepack/repack-telemetry-server",
"type": "wordpress-plugin",
"description": "WeRePack Telemetry Server",
"homepage": "https://WeRePack.org",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WeRePack Initiative",
"email": "hello@werepack.org"
},
{
"name": "Philipp Wellmer",
"email": "philipp@ouun.io"
}
],
"autoload": {
},
"require": {
"php": ">=7",
"composer/installers": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
"lint": [
"phpcs --colors --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=WordPress-Extra ."
],
"fix": [
"phpcbf -q --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=WordPress-Extra ."
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}