-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
42 lines (42 loc) · 927 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": "glushkovds/phpclickhouse-laravel",
"description": "Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel",
"keywords": [
"php",
"laravel",
"clickhouse"
],
"homepage": "https://github.com/glushkovds/phpClickHouse-laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Denis Glushkov",
"email": "amkarovec@gmail.com",
"homepage": "https://github.com/glushkovds"
}
],
"require": {
"php": ">=8.0",
"smi2/phpclickhouse": "^1.4.2",
"the-tinderbox/clickhouse-builder": "^6.0",
"illuminate/support": ">=7",
"illuminate/database": ">=7"
},
"require-dev": {
"laravel/framework": ">=9",
"phpunit/phpunit": "^9"
},
"suggest": {
},
"autoload": {
"psr-4": {
"PhpClickHouseLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}