forked from sklo-agency/ClickhouseBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.18 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
{
"name": "sayorus/clickhouse-builder",
"description": "Clickhouse sql query builder",
"license": "MIT",
"authors": [
{
"name": "FacedSID",
"email": "[email protected]"
},
{
"name": "Evsign",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Tinderbox\\ClickhouseBuilder\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tinderbox\\ClickhouseBuilder\\": "tests"
},
"files": [
"src/functions.php"
]
},
"require": {
"php": "~7.1",
"myclabs/php-enum": "^1.5",
"the-tinderbox/clickhouse-php-client": "^1.0"
},
"require-dev": {
"illuminate/database": "^5.4",
"phpunit/phpunit": "^6.1",
"mockery/mockery": "^0.9.9",
"illuminate/events": "^5.4",
"illuminate/config": "^5.4"
},
"scripts": {
"test": "phpunit --coverage-text --colors=never",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}