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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
{
"name": "tecnickcom/tc-lib-barcode",
"description": "PHP library to generate linear and bidimensional barcodes",
"type": "library",
"homepage": "http://www.tecnick.com",
"license": "LGPL-3.0-or-later",
"keywords": [
"tc-lib-barcode",
"barcode",
"CODE 39",
"ANSI MH10.8M-1983",
"USD-3",
"3 of 9",
"CODE 93",
"USS-93",
"Standard 2 of 5",
"Interleaved 2 of 5",
"CODE 128 A B C",
"UPC",
"EAN 8",
"EAN 13",
"UPC-A",
"UPC-E",
"MSI",
"POSTNET",
"PLANET",
"RMS4CC",
"Royal Mail",
"CBC",
"KIX",
"Klant",
"Intelligent Mail Barcode",
"Onecode",
"USPS-B-3200",
"CODABAR",
"CODE 11",
"PHARMACODE",
"PHARMACODE TWO-TRACKS",
"Datamatrix",
"ECC200",
"QR-Code",
"PDF417"
],
"authors": [
{
"name": "Nicola Asuni",
"email": "info@tecnick.com",
"role": "lead"
}
],
"require": {
"php": ">=5.4",
"ext-bcmath": "*",
"ext-date": "*",
"ext-gd": "*",
"ext-pcre": "*",
"tecnickcom/tc-lib-color": "^1.14"
},
"require-dev": {
"pdepend/pdepend": "2.13.0",
"phpmd/phpmd": "2.13.0",
"phpunit/phpunit": "10.1.2 || 9.6.7 || 8.5.31 || 7.5.20 || 6.5.14 || 5.7.27 || 4.8.36",
"squizlabs/php_codesniffer": "3.7.2 || 2.9.2"
},
"autoload": {
"psr-4": {
"Com\\Tecnick\\Barcode\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "test"
}
}
}
|