-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
147 lines (147 loc) · 3.25 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "aspose/barcode-cloud-php",
"description": "Aspose.BarCode for Cloud is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.",
"keywords": [
"Barcode-Scan",
"QR",
"DataMatrix",
"Barcode",
"AustraliaPost",
"VIN",
"MSI",
"Aztec",
"ISBN",
"OPC",
"Postnet",
"2D-Barcode",
"EAN13",
"ISSN",
"PZN",
"SingaporePost",
"Symbology",
"UPCA",
"UPCE",
"1D-Barcode",
"Code11",
"Code128",
"Code32",
"Codetext",
"DotCode",
"EAN14",
"EAN8",
"GS1DataMatrix",
"Interleaved2of5",
"ISMN",
"MaxiCode",
"OneCode",
"Pdf417",
"Pharmacode",
"Postal-Barcode",
"RM4SCC",
"SCC14",
"SSCC18",
"Code39Standard",
"GS1QR",
"MacroPdf417",
"JPEG",
"TIFF",
"PNG",
"BMP",
"GIF",
"EXIF",
"EMF",
"SVG",
"Aspose.BarCode",
"Aspose.BarCode-Cloud",
"Aspose.Total-Cloud",
"Cloud",
"REST",
"API",
"Generate-Barcode",
"Barcode-Generation",
"Barcode-Formatting",
"Format-Barcode",
"Barcode-Recognition",
"Recognize-Barcode",
"CodablockF",
"Checksum",
"Optimize-Barcode",
"Barcode-Optimization",
"cURL",
".NET",
"dotnet",
"CSharp",
"Java",
"PHP",
"Python",
"Node.js",
"Golang",
"Scan-Barcode",
"barcode",
"generation",
"recognition",
"Alpha-Numeric",
"AI-8102-Coupon",
"AustralianPosteParcel",
"Codabar",
"Code16K",
"Code39Extended",
"Code93Extended",
"Code93Standard",
"DatabarExpanded",
"DatabarExpandedStacked",
"DatabarLimited",
"DatabarOmniDirectional",
"DatabarStacked",
"DatabarStackedOmniDirectional",
"DatabarTruncated",
"DataLogic2of5",
"DeutschePostIdentcode",
"DeutschePostLeitcode",
"DutchKIX",
"GS1CodablockF",
"GS1Code128",
"IATA2of5",
"ItalianPost25",
"ITF14",
"ITF6",
"Matrix2of5",
"MicroPdf417",
"MICR",
"PatchCode",
"Planet",
"Standard2of5",
"SwissPostParcel",
"UpcaGs1Code128Coupon",
"UpcaGs1DatabarCoupon"
],
"license": "MIT",
"homepage": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-php",
"type": "library",
"authors": [
{
"name": "Aspose.BarCode Team",
"homepage": "https://github.com/aspose-barcode-cloud"
}
],
"require": {
"php": ">=7.4 || >=8.0",
"guzzlehttp/guzzle": "^7.4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.5.20",
"friendsofphp/php-cs-fixer": ">=2.16",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"Aspose\\": "src/Aspose/"
}
},
"scripts": {
"format": "php-cs-fixer fix index.php src/Aspose/ tests/ --config=php-cs-fixer.conf",
"lint": "phpstan analyse index.php src/ tests/ --level=3",
"test": "phpunit"
}
}