-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
43 lines (43 loc) · 1.01 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
{
"name": "influxdata/influxdb-client-php",
"description": "InfluxDB (v2+) Client Library for PHP",
"keywords": [
"InfluxDB"
],
"homepage": "https://www.github.com/influxdata/influxdb-client-php",
"license": "MIT",
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"php-http/client-common": "^2.2.1",
"php-http/discovery": "^1.9.1",
"psr/http-client": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.27",
"squizlabs/php_codesniffer": "~3.7",
"guzzlehttp/guzzle": "^7.0.1",
"guzzlehttp/psr7": "^2.0.0"
},
"autoload": {
"psr-4": {
"InfluxDB2\\": "src/InfluxDB2"
}
},
"autoload-dev": {
"psr-4": {
"InfluxDB2Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"test-coverage": "vendor/bin/phpunit tests --log-junit build/junit.xml -v --coverage-html=build/coverage-report"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}