summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: a900c0db20dd9e302aee6a401ec1eddfcb28d29c (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
47
48
49
50
51
52
53
{
    "name": "oci8/oci8",
    "type": "php-ext",
    "description": "The OCI8 extension lets you access Oracle Database.",
    "keywords": ["oracle", "database", "oci8"],
    "homepage": "https://github.com/php/pecl-database-oci8",
    "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"
        },
        {
            "name": "Tianfang Yang",
            "email": "tianfyan@php.net",
            "role": "Lead"
        },
        {
            "name": "Antony Dovgal",
            "email": "tony2001@php.net",
            "role": "Lead"
        },
        {
            "name": "Wez Furlong",
            "email": "wez@php.net",
            "role": "Lead"
        },
        {
            "name": "Andi Gutmans",
            "email": "andi@zend.com",
            "role": "Lead"
        }
    ],
    "require": {
        "php": ">=8.2.0"
    },
    "php-ext": {
        "extension-name": "oci8",
        "configure-options": [
            {
                "name": "with-oci8",
                "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
            }
        ]
    }
}