forked from Cacti/plugin_thold
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 857 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cacti/plugin_thold",
"description": "Cacti plugin_thold plugin",
"type": "cacti-plugin",
"require": {"php": ">=8.4"},
"require-dev": {
"pestphp/pest": "^4.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"ergebnis/phpstan-rules": "^2.0",
"infection/infection": "^0.29",
"rector/rector": "^2.0",
"mockery/mockery": "^1.6"
},
"autoload": {"psr-4": {"Cacti\\PluginThold\\": "src/"}},
"autoload-dev": {"psr-4": {"Cacti\\PluginThold\\Tests\\": "tests/"}},
"scripts": {
"test": "vendor/bin/pest",
"analyse": "vendor/bin/phpstan analyse --memory-limit=512M",
"mutate": "vendor/bin/infection --threads=4"
},
"config": {"allow-plugins": {"pestphp/pest-plugin": true, "infection/extension-installer": true}}
}