summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b01e0ec03c9b1b6e126b8c10d2d7278a3c55af81 (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
{
    "name": "noisebynorthwest/php-spx",
    "type": "php-ext",
    "license": "GPL-3.0-or-later",
    "description": "A simple & straight-to-the-point PHP profiling extension with its built-in web UI",
    "keywords": ["profiler", "profiling", "performance", "debugging", "php", "extension"],
    "homepage": "https://github.com/NoiseByNorthwest/php-spx",
    "support": {
        "issues": "https://github.com/NoiseByNorthwest/php-spx/issues",
        "source": "https://github.com/NoiseByNorthwest/php-spx"
    },
    "authors": [
        {
            "name": "Sylvain Lassaut",
            "email": "NoiseByNorthwest@gmail.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=5.4.0 <8.6.0"
    },
    "php-ext": {
        "extension-name": "spx",
        "support-zts": true,
        "support-nts": true,
        "configure-options": [
            {
                "name": "enable-spx",
                "description": "Enable SPX extension"
            },
            {
                "name": "enable-spx-dev",
                "description": "Compile SPX with debugging symbols"
            },
            {
                "name": "with-zlib-dir",
                "description": "Set the path to ZLIB install prefix",
                "needs-value": true
            }
        ]
    }
}