-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
84 lines (84 loc) · 2.75 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
{
"name": "phpcfdi/csf-scraper",
"description": "Obtiene los datos fiscales actuales de una persona moral o física dado su RFC y CIFID",
"keywords": ["phpcfdi", "sat", "csf"],
"homepage": "https://github.com/phpcfdi/csf-scraper",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cesar Aguilera",
"email": "cesargnu29@gmail.com"
},
{
"name": "Misael Limón",
"email": "misael.limon@ocelotlstudio.com"
},
{
"name": "Fernando Isidro",
"email": "fernando.isidro@ocelotlstudio.com"
}
],
"support": {
"source": "https://github.com/phpcfdi/csf-scraper",
"issues": "https://github.com/phpcfdi/csf-scraper/issues"
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.4",
"phpcfdi/rfc": "^1.1",
"symfony/css-selector": ">=6.0",
"symfony/dom-crawler": ">=6.0",
"symfony/process": ">=6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"PhpCfdi\\CsfScraper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCfdi\\CsfScraper\\Tests\\": "tests/"
}
},
"scripts": {
"dev:build": ["@dev:fix-style", "@dev:test"],
"dev:check-style": [
"@php tools/php-cs-fixer fix --dry-run --verbose",
"@php tools/phpcs --colors -sp src/ tests/"
],
"dev:fix-style": [
"@php tools/php-cs-fixer fix --verbose",
"@php tools/phpcbf --colors -sp src/ tests/"
],
"dev:test": [
"@dev:check-style",
"@php vendor/bin/phpunit --testdox --verbose --stop-on-failure",
"@php tools/phpstan analyse --no-interaction --no-progress",
"@php tools/composer-require-checker"
],
"dev:coverage": [
"@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --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:test": "DEV: run @dev:check-style, phpunit and phpstan",
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/"
}
}