-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 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
{
"name": "chdemko/sorted-collections",
"type": "library",
"description": "Sorted Collections for PHP >= 8.2",
"keywords": ["collection","set","tree","map","sorted","ordered","iterator","treeset","treemap","avl"],
"homepage": "https://php-sorted-collections.readthedocs.io/en/latest/?badge=latest",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Christophe Demko",
"email": "[email protected]",
"homepage": "https://chdemko.pagelab.univ-lr.fr/",
"role": "Developer"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.7",
"squizlabs/php_codesniffer": "^3.10",
"phpunit/phpunit": "^11.3",
"phpbench/phpbench": "^1.3"
},
"autoload": {
"psr-4": {
"chdemko\\SortedCollection\\": "src/SortedCollection"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"scripts": {
"style": "vendor/bin/phpcs --report=full --extensions=php --standard=PSR12 src tests examples benchmarks",
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit --log-junit junit.xml",
"benchmark": "vendor/bin/phpbench run --report=default"
}
}