-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.71 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "simpod/clickhouse-client",
"type": "library",
"description": "PHP ClickHouse Client",
"keywords": [
"clickhouse",
"client",
"php",
"http",
"HTTP client"
],
"homepage": "https://github.com/simPod/ClickHouseClient",
"license": "MIT",
"authors": [
{
"name": "Simon Podlipsky",
"email": "simon@podlipsky.net"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"require": {
"php": "^8.2",
"guzzlehttp/promises": "^2.0",
"guzzlehttp/psr7": "^2.6",
"php-http/client-common": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^3"
},
"require-dev": {
"cdn77/coding-standard": "^7.0",
"infection/infection": "^0.29.0",
"nyholm/psr7": "^1.2",
"php-http/message-factory": "^1.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.0.0",
"phpstan/phpstan-phpunit": "^2.0.0",
"phpstan/phpstan-strict-rules": "^2.0.0",
"phpunit/phpunit": "^11.0",
"symfony/http-client": "^7.0"
},
"autoload": {
"psr-4": {
"SimPod\\ClickHouseClient\\": "src/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"SimPod\\ClickHouseClient\\Tests\\": "tests/"
}
}
}