summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 32859bbc4f5e42d6c12566176063a3efc0eba1cd (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
{
    "name": "pecl/pdo_oci",
    "type": "php-ext",
    "description": "Use the PDO_OCI extension to access Oracle Database via PHP Data Objects (PDO) APIs",
    "keywords": ["pdo_oci", "pdo", "oracle", "database"],
    "homepage": "https://pecl.php.net/package/PDO_OCI",
    "license": "PHP-3.01",
    "authors": [
        {
            "name": "Christopher Jones",
            "email": "sixd@php.net",
            "role": "Lead"
        },
        {
            "name": "Sharad Chandran R",
            "email": "sharad.raju@oracle.com",
            "role": "Lead"
        }
    ],
    "require": {
        "php": ">=8.3.0"
    },
    "php-ext": {
        "extension-name": "pdo_oci",
        "configure-options": [
            {
                "name": "with-pdo_oci",
                "description": "Please provide the path to the ORACLE_HOME directory. Use 'instantclient,/path/to/instant/client/lib' if you're compiling with Oracle Instant Client",
                "needs-value": true
            }
        ]
    }
}