-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.08 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
{
"name": "peterbooker/prompress",
"description": "Monitor your WordPress install with Prometheus.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"monitoring",
"prometheus",
"alertmanager",
"metrics"
],
"support": {
"issues": "https://github.com/PeterBooker/prompress/issues",
"source": "https://github.com/PeterBooker/prompress"
},
"authors": [
{
"name": "Peter Booker",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"promphp/prometheus_client_php": "~2.10.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "~0.7.0",
"wp-coding-standards/wpcs": "3.1.0",
"phpunit/phpunit": "~10.5.10",
"wp-cli/wp-cli-bundle": "~2.10.0"
},
"scripts": {
"lint": "php ./vendor/bin/phpcs -ps .",
"make-pot": "./vendor/bin/wp make-pot ./ languages/prompress.pot --domain=prompress"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.1"
}
}
}