-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 2.09 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 2.09 KB
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
{
"name": "phpcfdi/sat-catalogos",
"description": "Catálogos de SAT para CFDI 3.3, CFDI 4.0 y Nómina 1.2",
"keywords": ["sat", "cfdi", "catalogos"],
"homepage": "https://github.com/phpcfdi/sat-catalogos",
"license": "MIT",
"support": {
"source": "https://github.com/phpcfdi/sat-catalogos",
"issues": "https://github.com/phpcfdi/sat-catalogos/issues"
},
"authors": [
{
"name": "Carlos C Soto",
"email": "eclipxe13@gmail.com"
}
],
"require": {
"php": ">=7.3",
"ext-pdo": "*",
"ext-sqlite3": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.20"
},
"autoload": {
"psr-4": {
"PhpCfdi\\SatCatalogos\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCfdi\\SatCatalogos\\Tests\\": "tests/"
}
},
"scripts": {
"dev:build": ["@dev:fix-style", "@dev:tests"],
"dev:check-style": [
"@php tools/php-cs-fixer fix --dry-run --verbose",
"@php tools/phpcs --colors -sp"
],
"dev:fix-style": [
"@php tools/php-cs-fixer fix --verbose",
"@php tools/phpcbf --colors -sp"
],
"dev:tests": [
"@dev:check-style",
"@php vendor/bin/phpunit --testdox --verbose --stop-on-failure",
"@php tools/phpstan analyse --verbose --no-progress"
],
"dev:coverage": [
"@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --verbose --coverage-html build/coverage/html/"
]
},
"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 php-cs-fixer and phpcs",
"dev:fix-style": "DEV: fix code style errors using php-cs-fixer and phpcbf",
"dev:tests": "DEV: run dev:check-style, phpunit and phpstan",
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/"
}
}