-
Notifications
You must be signed in to change notification settings - Fork 139
/
composer.json
42 lines (42 loc) · 973 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
36
37
38
39
40
41
42
{
"name": "smi2/phpclickhouse",
"type": "library",
"description": "PHP ClickHouse Client",
"keywords": ["clickhouse", "driver", "client", "curl", "http", "HTTP client", "php"],
"homepage": "https://github.com/smi2/phpClickHouse",
"license": "MIT",
"authors": [
{
"name": "Igor Strykhar",
"email": "[email protected]",
"homepage": "https://github.com/isublimity"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"doctrine/coding-standard": "^8.2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.5",
"sebastian/comparator": "^4.0"
},
"autoload": {
"psr-4": {
"ClickHouseDB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ClickHouseDB\\Tests\\": "tests/",
"ClickHouseDB\\Example\\": "example/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}