-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1020 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
45
46
47
48
{
"name": "wp-digital/wp-uptime-page",
"version": "1.2.0",
"type": "wordpress-muplugin",
"description": "Adds Uptime Page like from Pingdom into site's Dashboard.",
"license": "GPL-2.0+",
"keywords": [
"wordpress",
"plugins",
"uptime",
"page",
"uptime",
"pingdom"
],
"authors": [
{
"name": "SMFB Dinamo",
"email": "[email protected]",
"homepage": "https://www.smfb-dinamo.com/"
},
{
"name": "Viktor Kuliebiakin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"innocode-digital/php-cs": "^1.0",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml"
},
"autoload": {
"psr-4": {
"WPD\\UptimePage\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}