-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 814 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 814 Bytes
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
{
"name": "aldas/rrd-php-reader",
"description": "read rrd files purely using php",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.40",
"phpunit/phpunit": "^12.5.14"
},
"autoload": {
"psr-4": {
"RrdPhpReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"check": "vendor/bin/phpstan analyse --no-progress",
"test": "vendor/bin/phpunit",
"test-unit": "vendor/bin/phpunit --testsuite 'unit-tests'",
"test-ci": "vendor/bin/phpunit --coverage-clover report/coverage.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html report/html"
}
}