-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
87 lines (87 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "phpcfdi/sat-ws-descarga-masiva-cli",
"description": "Consumo del web service de descarga masiva del SAT por línea de comandos",
"license": "MIT",
"keywords": [
"sat",
"cfdi",
"download",
"descarga",
"webservice"
],
"authors": [
{
"name": "Carlos C Soto",
"email": "eclipxe13@gmail.com"
}
],
"homepage": "https://github.com/phpcfdi/sat-ws-descarga-masiva-cli",
"support": {
"issues": "https://github.com/phpcfdi/sat-ws-descarga-masiva-cli/issues",
"chat": "https://discord.gg/aFGYXvX",
"source": "https://github.com/phpcfdi/sat-ws-descarga-masiva-cli"
},
"require": {
"php": "^8.2",
"ext-json": "*",
"composer-runtime-api": "^2.2",
"azjezz/psl": "^3.0.2",
"eclipxe/enum": "^0.2.6",
"eclipxe/xlsxexporter": "^2.0.0",
"guzzlehttp/guzzle": "^7.8.1",
"phpcfdi/sat-ws-descarga-masiva": "^0.5.4",
"psr/log": "^3.0",
"symfony/console": "^7.1.2"
},
"require-dev": {
"phpunit/phpunit": "^11.2.6"
},
"autoload": {
"psr-4": {
"PhpCfdi\\SatWsDescargaMasiva\\CLI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCfdi\\SatWsDescargaMasiva\\CLI\\Tests\\": "tests/"
}
},
"bin": [
"bin/descarga-masiva.php"
],
"scripts": {
"dev:build": [
"@dev:fix-style",
"@dev:test"
],
"dev:check-style": [
"@php tools/composer-normalize normalize --dry-run",
"@php tools/php-cs-fixer fix --dry-run --verbose",
"@php tools/phpcs --colors -sp"
],
"dev:coverage": [
"@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html build/coverage/html/"
],
"dev:fix-style": [
"@php tools/composer-normalize normalize",
"@php tools/php-cs-fixer fix --verbose",
"@php tools/phpcbf --colors -sp"
],
"dev:phar": [
"@php tools/box compile --verbose"
],
"dev:test": [
"@dev:check-style",
"@php tools/phpstan analyse --no-interaction --no-progress",
"@php vendor/bin/phpunit --testdox --stop-on-failure --exclude-group integration"
]
},
"scripts-descriptions": {
"dev:build": "DEV: run dev:fix-style and dev:tests, run before pull request",
"dev:check-style": "DEV: search for code style errors using composer-normalize, php-cs-fixer and phpcs",
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/",
"dev:fix-style": "DEV: fix code style errors using composer-normalize, php-cs-fixer and phpcbf",
"dev:phar": "DEV: build phar file",
"dev:test": "DEV: run @dev:check-style, phpstan and phpunit"
}
}