-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.11 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"name": "bluem/tree",
"type": "library",
"description": "Library for handling tree structures based on parent IDs",
"keywords": ["tree", "hierarchical"],
"homepage": "https://github.com/BlueM/Tree",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Carsten Blüm",
"email": "carsten@bluem.net"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.62",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.22"
},
"autoload": {
"psr-4": {"BlueM\\": "src/"}
},
"autoload-dev": {
"psr-4": {"BlueM\\": "tests/"}
},
"scripts": {
"php-cs": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
"php-cs-fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --testdox-text=Tests.txt",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage"
}
}