Skip to content

Commit cfe34c2

Browse files
committed
Remove unnecessary dependencies
1 parent cb2c2c6 commit cfe34c2

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

.codeclimate.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualappeal/laravel-database-influxdb",
3-
"description": "A package for accessing InfluxDB from Laravel 5.5+, based on configuration settings.",
3+
"description": "A package for accessing InfluxDB from Laravel 5.6+, based on configuration settings.",
44
"keywords": [
55
"influx",
66
"influxdb",
@@ -28,11 +28,9 @@
2828
"laravel/framework": ">=5.6",
2929
"illuminate/log": ">=5.6",
3030
"illuminate/support": ">=5.6",
31-
"influxdb/influxdb-php": "1.14.*",
32-
"monolog/monolog": "1.24.*"
31+
"influxdb/influxdb-php": "1.14.*"
3332
},
3433
"require-dev": {
35-
"codeclimate/php-test-reporter": "dev-master",
3634
"phpunit/phpunit": "7.4.*"
3735
},
3836
"autoload": {

src/config/influxdb.php

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
'protocol' => env('INFLUXDB_PROTOCOL', 'http'),
66

7-
'user' => env('INFLUXDB_USER', null),
7+
'user' => env('INFLUXDB_USERNAME', null),
88

9-
'pass' => env('INFLUXDB_PASS', null),
9+
'pass' => env('INFLUXDB_PASSWORD', null),
1010

1111
'host' => env('INFLUXDB_HOST', 'localhost'),
1212

@@ -22,16 +22,6 @@
2222

2323
],
2424

25-
'log' => [
26-
27-
'monolog' => env('INFLUXDB_LOG_MONOLOG', false),
28-
29-
'level' => env('INFLUXDB_LOG_LEVEL', 'DEBUG'),
30-
31-
'limit' => env('INFLUXDB_LOG_LIMIT', 5),
32-
33-
],
34-
3525
'timeout' => env('INFLUXDB_TIMEOUT', 5),
3626

3727
'verify_ssl' => env('INFLUXDB_VERIFY_SSL', true),

0 commit comments

Comments
 (0)