-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.17 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
41
42
43
{
"name": "8ctopus/byte-buffer",
"type": "library",
"description": "A php buffer to work with binary data.",
"keywords": ["buffer", "hexadecimal", "byte", "binary", "pack", "unpack"],
"homepage": "https://github.com/8ctopus/byte-buffer",
"license": "MIT",
"authors": [
{
"name": "8ctopus",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"nunomaduro/collision": "^7|^8",
"phpunit/phpunit": "^9.0|^10.0",
"phpstan/phpstan": "^1.9",
"phpmd/phpmd": "^2.13"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Oct8pus\\ByteBuffer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --coverage-html=coverage",
"fix": "php-cs-fixer fix --verbose",
"fix-risky": "php-cs-fixer fix --allow-risky=yes --verbose",
"phpstan": "phpstan analyse --level 9 src",
"phpmd": "phpmd src ansi phpmd.xml"
}
}