forked from nfephp-org/posprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·46 lines (46 loc) · 1.26 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
{
"name": "nfephp-org/posprint",
"type": "library",
"description": "Thermal POS printer library",
"homepage": "https://github.com/nfephp/posprint",
"keywords": ["nfce", "print", "escpos", "thermal", "driver"],
"license": ["LGPL-3.0-or-later", "GPL-3.0-or-later", "MIT"],
"authors": [
{
"name": "Roberto L. Machado",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php" : ">=5.6",
"endroid/qrcode": "^2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.8",
"phpunit/phpunit": "^5.7",
"scrutinizer/ocular": "^1.3",
"phpmd/phpmd": "dev-master"
},
"autoload": {
"psr-4": {
"Posprint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Posprint\\": "tests"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml.dist",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src; vendor/bin/phpcbf --standard=psr2 tests",
"phpcs": "vendor/bin/phpcs --standard=psr2 src; vendor/bin/phpcs --standard=psr2 tests"
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"minimum-stability": "stable"
}