-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
46 lines (46 loc) · 1.31 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/sped-pos",
"description": "Biblioteca para impressão da DANFCe em impressoras térmicas compatíveis.",
"type": "library",
"version": "1.1.0",
"keywords": ["nfe","nfce","sped","nfephp"],
"homepage": "https://github.com/nfephp-org/sped-pos",
"license": ["LGPL-3.0-or-later", "GPL-3.0-or-later", "MIT"],
"authors": [
{
"name": "Renan Galeno",
"email": "renangaleno@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"ext-simplexml": "*",
"ext-libxml": "*",
"mike42/escpos-php": "^4.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpunit/phpunit": "^7.5",
"scrutinizer/ocular": "^1.3",
"sebastian/phpcpd": "^4.1",
"phpstan/phpstan": "^0.9.2"
},
"autoload": {
"psr-4": {
"NFePHP\\POS\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml.dist",
"phpcbf": "vendor/bin/phpcbf --standard=psr2 src",
"phpcs": "vendor/bin/phpcs --standard=psr2 src",
"phpstan": "vendor/bin/phpstan analyse src/ --level 1"
},
"extra": {
"branch-alias": {
"v1.0": "1.0-dev"
}
},
"minimum-stability": "stable"
}