-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.12 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
49
{
"name": "wp-digital/innstats",
"version": "1.2.0",
"type": "wordpress-muplugin",
"description": "Collects statistics through Plausible and shows analytics in admin panel. Also, provides API for developers to retrieve data.",
"license": "GPL-2.0+",
"keywords": [
"wordpress",
"plugins",
"statistics",
"plausible"
],
"authors": [
{
"name": "SMFB Dinamo",
"email": "post@smfb-dinamo.com",
"homepage": "https://www.smfb-dinamo.com/"
},
{
"name": "Viktor Kuliebiakin",
"email": "kuliebiakin@gmail.com"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"innocode-digital/wp-version": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-digital/php-cs": "^1.0"
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml",
"check-cs": "@phpcs",
"fix-cs": "@phpcbf"
},
"autoload": {
"psr-4": {
"WPD\\Statistics\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}