-
Notifications
You must be signed in to change notification settings - Fork 156
/
composer.json
64 lines (64 loc) · 2.33 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
{
"name": "libredte/libredte-lib-core",
"description": "LibreDTE: Biblioteca PHP (Núcleo)",
"type": "library",
"keywords": ["dte", "sii", "facturación electrónica", "chile"],
"homepage": "https://lib-core.docs.libredte.cl",
"license": "AGPL-3.0+",
"authors": [
{
"name": "LibreDTE",
"homepage": "https://www.libredte.cl"
}
],
"support": {
"issues": "https://github.com/libredte/libredte-lib-core/issues",
"source": "https://github.com/libredte/libredte-lib-core"
},
"autoload": {
"psr-4": {
"libredte\\lib\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"libredte\\lib\\Tests\\": "tests/src/"
}
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-soap": "*",
"illuminate/support": "^11.22",
"league/csv": "^9.16",
"maennchen/zipstream-php": "^3.1",
"nesbot/carbon": "^3.8",
"phpseclib/phpseclib": "^3.0",
"psr/simple-cache": "^3.0",
"symfony/cache": "^7.1",
"symfony/filesystem": "^7.1",
"symfony/mime": "^7.1",
"symfony/yaml": "^7.1",
"tecnickcom/tcpdf": "^6.7"
},
"require-dev": {
"ext-xdebug": "*",
"friendsofphp/php-cs-fixer": "^3.63",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.3"
},
"scripts": {
"docs": "php tools/phpdocumentor run --config=phpdoc.xml",
"tests": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml",
"tests-unit": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite unit",
"tests-functional": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite functional",
"tests-integration": "vendor/bin/phpunit --configuration=phpunit.xml --no-coverage --testsuite integration",
"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"
}
}