-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 985 Bytes
/
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
{
"name": "helppc/isrs",
"description": "PHP knihovna pro práci s XML strukturou pro komunikaci s registrem smluv Ministerstva vnitra České republiky",
"homepage": "http://helppc.cz",
"license": "MIT",
"time": "2018-09-07",
"keywords": [
"registr",
"smlouvy",
"publish",
"czech",
"ISRS"
],
"type": "library",
"support": {
"email": "[email protected]",
"issues": "https://github.com/HelpPC/isrs/issues",
"source": "https://github.com/HelpPC/isrs"
},
"authors": [
{
"name": "Tomas Kulhanek",
"homepage": "https://tirus.cz"
}
],
"require": {
"php": ">=7.1",
"ext-xml": "*",
"ext-libxml": "*",
"ext-dom": "*",
"doctrine/collections": ">=1.5",
"helppc/serializer": "^1.0"
},
"autoload": {
"psr-4": {
"HelpPC\\ISRS\\": "src/"
}
},
"suggest": {
"ext-xml": "for parsing xml"
},
"require-dev": {
"phpstan/phpstan": "^0.10.3",
"nette/tester": "^2.0"
}
}