-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 888 Bytes
/
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
{
"name": "chdemko/bitarray",
"type": "library",
"description": "BitArray for PHP >= 8.2",
"keywords": ["bits","array","iterator"],
"homepage": "http://github.com/chdemko/php-bitarray",
"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"
},
"autoload": {
"psr-4": {
"chdemko\\BitArray\\": "src/BitArray"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.2.x-dev"
}
},
"scripts": {
"style": "vendor/bin/phpcs --report=full --extensions=php --standard=PSR12 src tests examples",
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit --log-junit junit.xml"
}
}