forked from eclipxe13/CfdiUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.07 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
{
"name": "eclipxe/cfdiutils",
"description": "PHP Common utilities for Mexican CFDI 3.2 & 3.3",
"keywords": ["cfdi", "cfdi33", "mexico", "electronic invoice"],
"homepage": "https://github.com/eclipxe13/CfdiUtils",
"support": {
"wiki": "https://github.com/eclipxe13/CfdiUtils/wiki",
"issues": "https://github.com/eclipxe13/CfdiUtils/issues"
},
"license": "MIT",
"authors": [
{
"name": "Carlos C Soto",
"email": "eclipxe13@gmail.com",
"homepage": "http://eclipxe.com.mx/"
}
],
"require": {
"php": ">=7.0",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-soap": "*",
"eclipxe/xmlresourceretriever": "^1.2",
"eclipxe/xmlschemavalidator": "^2.0"
},
"suggest": {
"genkgo/xsl": "^0.5.20"
},
"require-dev": {
"genkgo/xsl": "^0.5.20",
"phpunit/phpunit": "^6.2",
"overtrue/phplint": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^2.4",
"phpstan/phpstan-shim": "^0.9.1"
},
"autoload": {
"psr-4": {
"CfdiUtils\\": "src/CfdiUtils/"
}
},
"autoload-dev": {
"psr-4": {
"CfdiUtilsTests\\": "tests/CfdiUtilsTests/"
}
},
"scripts": {
"build": [
"@fix-style",
"@qa"
],
"check-style": [
"vendor/bin/php-cs-fixer fix --dry-run --verbose",
"vendor/bin/phpcs --colors -sp src/ tests/"
],
"fix-style": [
"vendor/bin/php-cs-fixer fix --verbose",
"vendor/bin/phpcbf --colors -sp src/ tests/"
],
"qa": [
"vendor/bin/phpstan.phar analyse --level max src/ tests/",
"@test"
],
"test": [
"vendor/bin/phplint --cache=build/phplint.cache",
"vendor/bin/phpunit"
],
"coverage": [
"@php -dzend_extension=xdebug.so vendor/bin/phpunit --coverage-text --coverage-html build/coverage/html/"
]
}
}