diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:30:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:30:08 +0000 |
commit | 4ce65d59ca91871cfd126497158200a818720bce (patch) | |
tree | e277def01fc7eba7dbc21c4a4ae5576e8aa2cf1f /composer.json | |
parent | Initial commit. (diff) | |
download | icinga-php-library-4ce65d59ca91871cfd126497158200a818720bce.tar.xz icinga-php-library-4ce65d59ca91871cfd126497158200a818720bce.zip |
Adding upstream version 0.13.1.upstream/0.13.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4588aa3 --- /dev/null +++ b/composer.json @@ -0,0 +1,46 @@ +{ + "name": "icinga/icinga-php-library", + "type": "project", + "description": "Icinga Web 2 - bundled Icinga PHP libraries", + "homepage": "https://github.com/Icinga/icinga-php-library", + "license": "MIT", + "config": { + "sort-packages": true, + "platform": { + "php": "7.2.9" + }, + "allow-plugins": { + "cweagans/composer-patches": true + } + }, + "require": { + "php": ">=7.2", + "ipl/html": "^0.8.0", + "ipl/i18n": "^0.2.0", + "ipl/orm": "^0.6.0", + "ipl/scheduler": "^0.1.0", + "ipl/sql": "^0.7.0", + "ipl/stdlib": "^0.13.0", + "ipl/validator": "^0.5.0", + "ipl/web": "^0.9.0", + "cweagans/composer-patches": "~1.0" + }, + "require-dev": { + }, + "autoload": { + "psr-0": { "AssetLoader": "" } + }, + "scripts": { + "post-update-cmd": [ + "AssetLoader::update" + ] + }, + "extra": { + "composer-exit-on-patch-failure": true, + "patches": { + "ramsey/collection": { + "Collection: Add PHP 8.1 support": "patches/ramsey-collection.patch" + } + } + } +} |