-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.81 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
{
"name": "jobrouter/rest-client",
"description": "Rest client for the JobRouter® digitalisation platform",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"jobrouter",
"rest client"
],
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/jobrouter/rest-client/issues",
"source": "https://github.com/jobrouter/rest-client",
"docs": "https://jobrouter-client.readthedocs.io/"
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-filter": "*",
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/psr7": "^2.4",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"brotkrueml/coding-standards": "~6.0.0",
"donatj/mock-webserver": "^2.7",
"ergebnis/composer-normalize": "~2.44.0",
"infection/infection": "^0.29.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "1.12.5",
"phpunit/phpunit": "^10.5 || ^11.3",
"rector/rector": "1.2.5",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3"
},
"autoload": {
"psr-4": {
"JobRouter\\AddOn\\RestClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JobRouter\\AddOn\\RestClient\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.1.x-dev"
}
}
}