-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.57 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
{
"name": "sokil/php-clickhouse",
"description": "Yandex ClickHouse PHP Connector",
"type": "library",
"license": "MIT",
"keywords": ["php", "ClickHouse"],
"homepage": "https://github.com/sokil/php-clickhouse",
"authors": [
{
"name": "Dmytro Sokil",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sokil\\ClickHouse\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\ClickHouse\\": ["tests/"]
}
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-mbstring": "*",
"psr/http-message": "^1.0"
},
"require-dev": {
"ext-curl": "*",
"ext-sockets": "*",
"phpunit/phpunit": "^7.5 || ^8.0",
"satooshi/php-coveralls": ">=0.7.1 <2.0",
"squizlabs/php_codesniffer": "^2.3",
"phpmd/phpmd" : "@stable",
"phpbench/phpbench": "@stable",
"infection/infection": "@stable"
},
"suggest": {
"ext-curl": "Support of curl connection",
"ext-sockets": "Support of socket connection"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cover": "./vendor/bin/phpunit -c ./tests/phpunit.xml --coverage-clover ./build/phpunit/clover.xml ./tests",
"coveralls": "./vendor/bin/coveralls -v",
"check-style": "./vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "./vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"bench": "phpbench run benchmarks/ --report=default",
"infection": "infection"
}
}