-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.68 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
{
"name": "contica/facturador-electronico-cr",
"type": "library",
"description": "Un facturador de código libre para integrar facturación electrónica en Costa Rica a un proyecto PHP",
"keywords": [
"costa rica",
"facturacion electronica",
"facturacion"
],
"homepage": "https://github.com/josiasmc/facturador-electronico-cr",
"license": "MIT",
"authors": [
{
"name": "Josias Martin",
"email": "josias@solucionesinduso.com",
"homepage": "https://github.com/josiasmc",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"defuse/php-encryption": "^2.4",
"guzzlehttp/guzzle": "^7.9",
"sabre/xml": "^4.0",
"monolog/monolog": "^2.10",
"ramsey/uuid": "^4.2",
"league/flysystem-aws-s3-v3": "^2.5",
"league/flysystem": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.11"
},
"config":{
"platform": {
"php": "7.4"
}
},
"autoload": {
"psr-4": {
"Contica\\Facturacion\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Contica\\Facturacion\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"generateKey": "php vendor/defuse/php-encryption/bin/generate-defuse-key",
"check-style": "phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}