-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (56 loc) · 2.76 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
{
"name": "apigatewaycl/apigateway-api-client",
"description": "Cliente para realizar la integración con los servicios web de API Gateway desde PHP.",
"type": "library",
"keywords": ["api", "sii", "dte", "facturación electrónica", "chile"],
"homepage": "https://www.apigateway.cl",
"license": "LGPL-3.0+",
"authors": [
{
"name": "API Gateway",
"homepage": "https://www.apigateway.cl"
}
],
"support": {
"issues": "https://github.com/apigatewaycl/apigateway-api-client-php/issues",
"source": "https://github.com/apigatewaycl/apigateway-api-client-php"
},
"config": {
"platform": {
"php": "8.2"
}
},
"require": {
"guzzlehttp/guzzle": "^7",
"php": "^8.2 || ^8.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.63",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.3",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"apigatewaycl\\api_client\\": "src/",
"apigatewaycl\\api_client\\sii\\": "src/sii/"
}
},
"scripts": {
"docs": "php tools/phpdocumentor run --config=phpdoc.xml",
"tests": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage",
"tests-readonly": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml --filter 'testListarActividadesEconomicas|testObtenerSituacionTributariaTercero|testListarUfAnual|testListarUfMensual|testListarUfDiario|testObtenerDatosContribMisii|testObtenerCsvCompraDetalle|testObtenerCsvVentaDetalle'",
"tests-cover": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml",
"tests-debug": "XDEBUG_MODE=debug vendor/bin/phpunit --configuration=phpunit.xml",
"tests-act": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite activ",
"tests-bhe": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite bhe",
"tests-contr": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite contrib",
"tests-indic": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite indicadores",
"tests-dte": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite dte",
"tests-misii": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite misii",
"phpcs-fix": "php-cs-fixer fix -v --config=php-cs-fixer.php .",
"phpcs-fix-dry-run": "php-cs-fixer fix -v --dry-run --diff --config=php-cs-fixer.php .",
"phpstan": "phpstan analyse --configuration=phpstan.neon --memory-limit=1G",
"phpstan-export": "phpstan analyse --configuration=phpstan.neon --level 9 --generate-baseline"
}
}