diff options
Diffstat (limited to '')
-rw-r--r-- | composer.json | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a0ec7a0 --- /dev/null +++ b/composer.json @@ -0,0 +1,69 @@ +{ + "name": "icinga/icinga-php-thirdparty", + "type": "project", + "description": "Icinga Web 2 - Bundle for all 3rd party PHP libraries", + "homepage": "https://github.com/Icinga/icinga-php-thirdparty", + "license": "MIT", + "config": { + "sort-packages": true, + "platform": { + "php": "7.2" + }, + "allow-plugins": { + "cweagans/composer-patches": true + } + }, + "support": { + "issues": "https://github.com/Icinga/icinga-php-thirdparty/issues" + }, + "require": { + "php": ">=7.2 <=8.1", + "ext-curl": "*", + "clue/block-react": "^1", + "clue/connection-manager-extra": "^1", + "clue/http-proxy-react": "^1", + "clue/mq-react": "^1", + "clue/redis-react": "^2", + "clue/soap-react": "^1", + "clue/socket-raw": "^1", + "clue/socks-react": "^1", + "clue/stdio-react": "^2", + "cweagans/composer-patches": "~1.0", + "evenement/evenement": "^3", + "predis/predis": "^1", + "psr/http-message": "^1", + "ramsey/uuid": "^3", + "react/child-process": "^0.6", + "react/datagram": "^1", + "react/dns": "^1", + "react/event-loop": "^1", + "react/http": "^1", + "react/promise": "^2", + "react/promise-stream": "^1", + "react/promise-timer": "^1", + "react/socket": "^1", + "react/stream": "^1", + "guzzlehttp/psr7": "^1", + "guzzlehttp/guzzle": "^6.5", + "jfcherng/php-diff": "^6.10", + "components/jquery": "3.6.*" + }, + "require-dev": { + }, + "autoload": { + "psr-0": { "AssetLoader": "" } + }, + "scripts": { + "post-update-cmd": [ + "AssetLoader::update" + ] + }, + "extra": { + "composer-exit-on-patch-failure": true, + "patches": { + "ramsey/uuid": { + "Uuid: Add PHP 8.1 support": "patches/ramsey-uuid.patch" + } + } + } +} |