-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 1.97 KB
/
Copy pathcomposer.json
File metadata and controls
78 lines (78 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "digitalcz/register-adries",
"type": "library",
"description": "Provides communication with https://data.gov.sk/dataset/register-adries in PHP OOP via PSR-18 HTTP client",
"keywords": [
"digitalcz",
"register-adries",
"data.gov.sk",
"slovakia",
"kataster",
"php"
],
"homepage": "https://github.com/digitalcz/register-adries",
"license": "MIT",
"authors": [
{
"name": "Pavel Stejskal",
"email": "spajxo@gmail.com",
"role": "Developer"
}
],
"support": {
"email": "devs@digital.cz"
},
"require": {
"php": "~7.4||~8.0",
"ext-json": "*",
"php-http/discovery": "^1.7",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0.1"
},
"suggest": {
"symfony/http-client": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"nyholm/psr7": "^1.5.1",
"php-http/httplug": "^2.3.0",
"php-http/mock-client": "^1.5.0",
"phpstan/phpstan": "^1.9.2",
"phpunit/phpunit": "^8.5.31",
"digitalcz/coding-standard": "^v0.0.1",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/var-dumper": "^5.4.14"
},
"autoload": {
"psr-4": {
"DigitalCz\\RegisterAdries\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCz\\RegisterAdries\\": "tests"
}
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse",
"cs": "phpcs -p",
"csfix": "phpcbf -p",
"checks": [
"@cs",
"@phpstan",
"@tests"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}