-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (50 loc) · 1.15 KB
/
composer.json
File metadata and controls
51 lines (50 loc) · 1.15 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
{
"name": "gilek/ewus",
"description": "Library to simplify communication with the eWUŚ system.",
"keywords": ["ewuś", "ewus", "nfz"],
"homepage": "https://github.com/gilek/ewus",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maciej Kłak",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Gilek\\Ewus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gilek\\Ewus\\Test\\": "tests"
}
},
"require": {
"ext-dom": "*",
"econea/nusoap": "^0.9.17",
"sabre/xml": "^4.0",
"phpstan/phpstan-phpunit": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^10",
"symfony/var-dumper": "^6.4",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.11"
},
"config": {
"platform": {
"php": "8.1"
}
},
"scripts": {
"lint": [
"vendor/bin/phpstan analyse -c phpstan.neon",
"vendor/bin/phpcs"
],
"test": [
"vendor/bin/phpunit"
]
}
}