Add vendor libs from Icinga Web and support PHP 8.2 (#11)
This commit is contained in:
parent
257d966dd9
commit
2e6cbc7590
|
@ -6,7 +6,7 @@ which can be integrated as library into Icinga Web 2.
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
* [Icinga Web 2](https://github.com/Icinga/icingaweb2) (>= 2.9)
|
* [Icinga Web 2](https://github.com/Icinga/icingaweb2) (>= 2.9)
|
||||||
* PHP (>= 7.2)
|
* PHP (>= 7.2.9)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|
|
@ -7,42 +7,48 @@
|
||||||
"config": {
|
"config": {
|
||||||
"sort-packages": true,
|
"sort-packages": true,
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": "7.2"
|
"php": "7.2.9"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/Icinga/icinga-php-thirdparty/issues"
|
"issues": "https://github.com/Icinga/icinga-php-thirdparty/issues"
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2 <=8.1",
|
"php": ">=7.2.9 <=8.2",
|
||||||
"ext-curl": "*",
|
"ext-curl": "*",
|
||||||
"clue/block-react": "^1",
|
"clue/block-react": "^1.5",
|
||||||
"clue/connection-manager-extra": "^1",
|
"clue/connection-manager-extra": "^1.3",
|
||||||
"clue/http-proxy-react": "^1",
|
"clue/http-proxy-react": "^1.8",
|
||||||
"clue/mq-react": "^1",
|
"clue/mq-react": "^1.5",
|
||||||
"clue/redis-react": "^2",
|
"clue/redis-react": "^2.6",
|
||||||
"clue/soap-react": "^1",
|
"clue/soap-react": "^2",
|
||||||
"clue/socket-raw": "^1",
|
"clue/socket-raw": "^1.6",
|
||||||
"clue/socks-react": "^1",
|
"clue/socks-react": "^1.4",
|
||||||
"clue/stdio-react": "^2",
|
"clue/stdio-react": "^2.6",
|
||||||
"evenement/evenement": "^3",
|
"components/jquery": "3.6.*",
|
||||||
"predis/predis": "^1",
|
"dompdf/dompdf": "^2.0.3",
|
||||||
"psr/http-message": "^1",
|
"erusev/parsedown": "^1.7.4",
|
||||||
"ramsey/uuid": "^3",
|
"evenement/evenement": "^3.0.1",
|
||||||
"react/child-process": "^0.6",
|
"ezyang/htmlpurifier": "^4.16",
|
||||||
"react/datagram": "^1",
|
"guzzlehttp/guzzle": "^7.7",
|
||||||
"react/dns": "^1",
|
"guzzlehttp/psr7": "^2.5",
|
||||||
"react/event-loop": "^1",
|
"jfcherng/php-diff": "^6.10.14",
|
||||||
"react/http": "^1",
|
"predis/predis": "^2.2",
|
||||||
"react/promise": "^2",
|
"psr/http-message": "^1.1",
|
||||||
"react/promise-stream": "^1",
|
"ramsey/uuid": "^4.2.3",
|
||||||
"react/promise-timer": "^1",
|
"react/child-process": "^0.6.5",
|
||||||
"react/socket": "^1",
|
"react/datagram": "^1.9",
|
||||||
"react/stream": "^1",
|
"react/dns": "^1.11",
|
||||||
"guzzlehttp/psr7": "^1",
|
"react/event-loop": "^1.4",
|
||||||
"guzzlehttp/guzzle": "^6.5",
|
"react/http": "^1.9",
|
||||||
"jfcherng/php-diff": "^6.10",
|
"react/promise": "^2.10",
|
||||||
"components/jquery": "3.6.*"
|
"react/promise-stream": "^1.6",
|
||||||
|
"react/promise-timer": "^1.9",
|
||||||
|
"react/socket": "^1.13",
|
||||||
|
"react/stream": "^1.3",
|
||||||
|
"shardj/zf1-future": "^1.22",
|
||||||
|
"tedivm/jshrink": "^1.6.8",
|
||||||
|
"wikimedia/less.php": "^3.2.1"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue