-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 823 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 823 Bytes
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
{
"name": "omikron/factfinder-communication-sdk",
"description": "FACT-Finder® Communication SDK",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Omikron Data Quality GmbH",
"homepage": "https://web-components.fact-finder.de"
}
],
"require": {
"php": ">=7.3 || ~8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"psr/http-client": "^1.0",
"psr/log": "^1.1||^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4.0",
"phpmd/phpmd": "^2.9",
"phpspec/phpspec": "^7.2"
},
"autoload": {
"psr-4": {
"Omikron\\FactFinder\\Communication\\": "src/"
}
},
"scripts": {
"test": [
"php-cs-fixer fix --dry-run -v",
"phpmd src text phpmd.xml.dist",
"phpspec run --format=dot"
]
}
}