-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 943 Bytes
/
composer.json
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
{
"name": "crowdstar/vertica-swoole-adapter",
"description": "Provides a DB layer for Swoole-based application to communicate to HP Vertica databases.",
"keywords": [
"vertica",
"swoole"
],
"homepage": "https://www.glu.com",
"license": "Apache-2.0",
"type": "library",
"require": {
"php": ">=7.1",
"ext-swoole": ">=4.4",
"crowdstar/exponential-backoff": "~3.0.0",
"skatrych/vertica-php-adapter": "@dev"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"psr/log": "^1.1",
"swoole/ide-helper": "@dev"
},
"suggest": {
"psr/log": "Allow to log errors for debugging purpose."
},
"autoload": {
"psr-4": {
"CrowdStar\\VerticaSwooleAdapter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CrowdStar\\Tests\\VerticaSwooleAdapter\\": "tests/unit/"
}
}
}