-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
81 lines (81 loc) · 2.1 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
{
"name": "findologic/findologic-api",
"description": "Library for FINDOLOGIC API requests",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Georg M. Sorst",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Chris Ortner",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Dominik Brader",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Markus Machatschek",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Huzaifa Mustafa",
"email": "[email protected]",
"role": "developer"
}
],
"config": {
"platform": {
"php": "8.1"
}
},
"require": {
"php": ">=8.1",
"vlucas/valitron": "^1.4",
"ext-SimpleXML": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-libxml": "*",
"findologic/xml-response-schema": "^2.1",
"guzzlehttp/guzzle": "^7.4.5"
},
"require-dev": {
"phpunit/phpunit": "^9.6.9",
"friendsofphp/php-cs-fixer": "^v3.18.0"
},
"autoload": {
"psr-4": {
"FINDOLOGIC\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FINDOLOGIC\\Api\\Tests\\": "tests/"
}
},
"scripts": {
"lint": [
"php-cs-fixer fix --dry-run --using-cache=no src",
"php-cs-fixer fix --dry-run --using-cache=no tests"
],
"fix": [
"php-cs-fixer fix --using-cache=no src",
"php-cs-fixer fix --using-cache=no tests"
],
"test": [
"XDEBUG_MODE=coverage phpunit --configuration phpunit.xml --coverage-text --coverage-clover=coverage.xml"
]
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:findologic/guzzle.git"
}
]
}