-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.49 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
{
"name": "faerber/pdf-to-zpl",
"description": "Convert a PDF file to a ZPL file",
"type": "library",
"version": "0.3.2",
"license": "MIT",
"keywords": ["zebra-printers", "pdf", "zpl"],
"homepage": "https://github.com/benfaerber/pdf-to-zpl",
"autoload": {
"psr-4": {
"Faerber\\PdfToZpl\\": "src/"
}
},
"authors": [
{
"name": "Ben Faerber",
"email": "[email protected]"
}
],
"require": {
"illuminate/collections": "^11.37",
"guzzlehttp/guzzle": "^7.9"
},
"extra": {
"examples-dir": "example"
},
"scripts": {
"test": [
"./vendor/bin/phpunit tests --bootstrap \"tests/TestUtils.php\""
],
"benchmark": [
"php vendor/bin/phpbench run --report=main_report --report=plain_text_report --output=html_report --output=csv_report",
"php vendor/bin/phpbench run --report=main_report --output=html_report"
],
"format": [
"PHP_CS_FIXER_IGNORE_ENV=true ./vendor/bin/php-cs-fixer fix ."
],
"run-example": [
"php example/example.php"
],
"run-tiny-example": [
"php example/tinyPrinter.php"
],
"generate-test-data": [
"php example/generateTestData.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpbench/phpbench": "^1.3",
"friendsofphp/php-cs-fixer": "^3.66"
}
}