-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 2.54 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 2.54 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
{
"name": "contafi/contafi-api-client",
"description": "Cliente para realizar la integración con los servicios web de ContaFi desde PHP.",
"type": "library",
"keywords": ["contafi"],
"homepage": "https://www.contafi.cl",
"license": "LGPL-3.0+",
"authors": [
{
"name": "ContaFi",
"homepage": "https://www.contafi.cl"
}
],
"support": {
"issues": "https://github.com/ContaFi/contafi-api-client-php/issues",
"source": "https://github.com/ContaFi/contafi-api-client-php"
},
"autoload": {
"psr-4": {
"contafi\\api_client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"contafi\\tests\\Helpers\\": "tests/Helpers/"
}
},
"require": {
"php": "^8.5",
"guzzlehttp/guzzle": "^7.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^13.0",
"vlucas/phpdotenv": "^5.6"
},
"scripts": {
"install-docs": "curl -L https://www.phpdoc.org/phpDocumentor.phar -o phpdoc.phar; chmod +x phpdoc.phar",
"docs": "php phpdoc.phar run --config=phpdoc.xml",
"tests": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml",
"tests-contribuyentes": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite contribuyentes",
"tests-facturacion": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite facturacion",
"tests-bhe": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite bhe",
"tests-bte": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite bte",
"tests-remuneraciones": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite remuneraciones",
"tests-movimientos": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite movimientos",
"tests-readonly": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml --filter 'testObtenerDatosContribuyente|testObtenerEstadisticasContribuyente|testObtenerRoles|testListarMovimientos|testListarRemuneraciones'",
"phpcs-fix": "php-cs-fixer fix -v --config=php-cs-fixer.php .",
"phpcs": "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"
}
}