This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
67 lines (67 loc) · 1.92 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
{
"name": "filipsedivy/php-eet",
"description": "💸 Client for electronic records of sales",
"homepage": "https://github.com/filipsedivy/PHP-EET",
"license": [
"MIT"
],
"keywords": [
"EET",
"elektronická evidence tržeb",
"etrzby.cz"
],
"type": "library",
"support": {
"email": "mail@filipsedivy.cz",
"issues": "https://github.com/filipsedivy/PHP-EET/issues",
"source:": "https://github.com/filipsedivy/PHP-EET"
},
"authors": [
{
"name": "Filip Šedivý",
"email": "mail@filipsedivy.cz",
"homepage": "https://filipsedivy.cz",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-openssl": "*",
"ext-soap": "*",
"ramsey/uuid": "^3.9 || ^4.0",
"robrichards/wse-php": "^2.0",
"symfony/validator": "^4.4 || ^5.0"
},
"require-dev": {
"ninjify/nunjuck": "^0.2",
"phpstan/phpstan": "^0.8",
"slevomat/coding-standard": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"FilipSedivy\\EET\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "4.2-dev"
}
},
"scripts": {
"full": [
"@cs",
"@phpstan",
"@tester"
],
"phpstan": "phpstan analyse --level 7 --configuration tests/phpstan.neon src/",
"cs": "phpcs --standard=phpcs.xml --encoding=utf-8 -sp src/ tests/cases/",
"cbf": "phpcbf --standard=phpcs.xml --colors --encoding=utf-8 -nsp src/ tests/",
"tester": "nunjuck -s -c ./tests/php.ini ./tests",
"coverage": "nunjuck -p phpdbg tests -s --coverage ./coverage.xml --coverage-src ./src"
}
}