-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (88 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tomas-kulhanek/czech-data-box",
"description": "PHP library for connection to Integrated system of data box (ISDS) in Czech republic",
"license": "MIT",
"authors": [
{
"name": "Tomáš Kulhánek",
"email": "jsem@tomaskulhanek.cz",
"homepage": "https://github.com/tomas-kulhanek"
}
],
"keywords": [
"isds",
"datovky",
"czech"
],
"type": "library",
"support": {
"email": "jsem@tomaskulhanek.cz",
"issues": "https://github.com/tomas-kulhanek/czech-data-box/issues",
"source": "https://github.com/tomas-kulhanek/czech-data-box"
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-xml": "*",
"symfony/validator": "^7.0",
"tomas-kulhanek/serializer": "^2.0.3"
},
"autoload": {
"psr-4": {
"TomasKulhanek\\CzechDataBox\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TomasKulhanek\\Tests\\CzechDataBox\\": "tests/"
}
},
"suggest": {
"ext-curl": "for comunication with czech databox servers",
"guzzlehttp/guzzle": "for usage with guzzle",
"symfony/http-client": "for usage with symfony"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"nyholm/psr7": "^1.8",
"php-http/httplug": "^2.4",
"symfony/http-client": "5.4.*|6.*|7.*",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^11.0",
"rector/rector": "^1.0",
"squizlabs/php_codesniffer": "^3.9"
},
"scripts": {
"check": [
"@phpstan",
"@phpcs",
"@phpunit"
],
"test:phpunit": "php -d xdebug.mode=off vendor/phpunit/phpunit/phpunit",
"check:phpstan": "php -d memory_limit=512M vendor/bin/phpstan analyse -c phpstan.neon",
"check:rector": "php vendor/bin/rector process src tests public --dry-run",
"check:cs": "phpcs --extensions=php --standard=PSR12 -n src tests",
"fix:cs": "phpcbf --extensions=php --standard=PSR12 -n src tests",
"fix:rector": "php vendor/bin/rector process src tests public",
"fix:all": [
"@fix:rector",
"@fix:cs"
],
"check:all": [
"@check:phpstan",
"@check:rector",
"@check:cs"
]
},
"archive": {
"exclude": [
"/tests"
]
},
"config": {
"sort-packages": true
}
}