-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.96 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
{
"name": "heptacom/heptaconnect-package-http",
"description": "HEPTAconnect Package for HTTP",
"license": [
"AGPL-3.0-or-later",
"proprietary"
],
"type": "library",
"keywords": [
"heptaconnect",
"heptaconnect-package",
"http"
],
"authors": [
{
"name": "HEPTACOM GmbH"
}
],
"homepage": "https://heptaconnect.io",
"support": {
"issues": "https://github.com/HEPTACOM/heptaconnect-package-http/issues",
"source": "https://github.com/HEPTACOM/heptaconnect-package-http",
"docs": "https://heptaconnect.io/",
"rss": "https://heptaconnect.io/news/rss2.xml"
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"heptacom/heptaconnect-portal-base": "^0.9.5",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/event-dispatcher": "^5.0 || ^6.0",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/options-resolver": "^5.1 || ^6.0"
},
"require-dev": {
"infection/infection": ">=0.21",
"phpunit/phpunit": ">=9.3 <10"
},
"conflict": {
"nikic/php-parser": "4.7.0"
},
"suggest": {
"ext-dom": "Allow XML formatting"
},
"repositories": {
"heptaconnect-sources": {
"type": "path",
"url": "../**"
}
},
"autoload": {
"psr-4": {
"Heptacom\\HeptaConnect\\Package\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Heptacom\\HeptaConnect\\Package\\Http\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true
}
}
}