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": "tecnickcom/tc-lib-file",
"description": "PHP library to read byte-level data from files",
"type": "library",
"homepage": "http://www.tecnick.com",
"license": "LGPL-3.0-or-later",
"keywords": [
"tc-lib-file",
"file",
"byte",
"bit",
"read",
"short",
"long",
"double"
],
"authors": [
{
"name": "Nicola Asuni",
"email": "info@tecnick.com",
"role": "lead"
}
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-pcre": "*"
},
"require-dev": {
"pdepend/pdepend": "2.13.0",
"phpmd/phpmd": "2.13.0",
"phpunit/phpunit": "10.1.2 || 9.6.13",
"squizlabs/php_codesniffer": "3.7.2"
},
"autoload": {
"psr-4": {
"Com\\Tecnick\\File\\": "src"
}
},
"autoload-dev": {
"psr-4": { "Test\\": "test" }
}
}
|