This repository was archived by the owner on Apr 7, 2024. It is now read-only.
forked from GlobalTradingTechnologies/dbal-vertica-driver
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.26 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
{
"name": "winnersoftlab/dbal-vertica-driver",
"description": "Doctrine DBAL driver for Vertica",
"keywords": [
"database",
"dbal",
"doctrine",
"vertica",
"driver",
"analytics"
],
"homepage": "https://github.com/WinnerSoftLab/dbal-vertica-driver",
"type": "library",
"license": "MIT",
"conflict": {
"che/dbal-vertica-driver": "*"
},
"authors": [
{
"name": "Kirill chEbba Chebunin",
"email": "iam@chebba.org",
"homepage": "http://github.com/chEbba"
},
{
"name": "Andrey Kolchenko",
"email": "andrey@kolchenko.me",
"role": "developer",
"homepage": "https://github.com/komex"
}
],
"autoload": {
"psr-0": {
"Che\\DBAL\\Vertica": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Che\\DBAL\\Vertica\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.4.0",
"ext-odbc": "*",
"doctrine/dbal": "<2.6",
"symfony/options-resolver": "^3.2"
},
"require-dev": {
"phpmd/phpmd": "^2.4",
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "^5.6"
}
}