-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
{
"name": "php-aidc/label-printer",
"description": "Easily create and print labels on various label printers",
"keywords": [
"DirectProtocol", "Fingerprint", "TSPL", "TSPL2",
"Honeywell", "Intermec", "TSC",
"aidc", "pos", "wms", "barcode", "label", "print", "printer"
],
"homepage": "https://github.com/php-aidc/label-printer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "JhaoDa",
"email": "jhaoda@gmail.com"
}
],
"support": {
"issues": "https://github.com/php-aidc/label-printer/issues"
},
"require": {
"php": ">=7.1",
"ext-mbstring": "*",
"myclabs/php-enum": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "~7.5"
},
"autoload": {
"psr-4": {
"PhpAidc\\LabelPrinter\\": "src/",
"PhpAidc\\LabelPrinter\\Tests\\Unit\\": "tests/Unit/"
}
},
"suggest": {
"ext-imagick": "Required to print unsupported image formats, PDF and text with custom fonts."
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}