summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 4588aa3f5e14de622123c3c6b79c1c86c5c1d7d6 (plain)
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
{
    "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"
            }
        }
    }
}