Skip to content

Commit

Permalink
Remove unnecessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Nov 24, 2018
1 parent cb2c2c6 commit cfe34c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 26 deletions.
10 changes: 0 additions & 10 deletions .codeclimate.yml

This file was deleted.

6 changes: 2 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "visualappeal/laravel-database-influxdb",
"description": "A package for accessing InfluxDB from Laravel 5.5+, based on configuration settings.",
"description": "A package for accessing InfluxDB from Laravel 5.6+, based on configuration settings.",
"keywords": [
"influx",
"influxdb",
Expand Down Expand Up @@ -28,11 +28,9 @@
"laravel/framework": ">=5.6",
"illuminate/log": ">=5.6",
"illuminate/support": ">=5.6",
"influxdb/influxdb-php": "1.14.*",
"monolog/monolog": "1.24.*"
"influxdb/influxdb-php": "1.14.*"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master",
"phpunit/phpunit": "7.4.*"
},
"autoload": {
Expand Down
14 changes: 2 additions & 12 deletions src/config/influxdb.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

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

'user' => env('INFLUXDB_USER', null),
'user' => env('INFLUXDB_USERNAME', null),

'pass' => env('INFLUXDB_PASS', null),
'pass' => env('INFLUXDB_PASSWORD', null),

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

Expand All @@ -22,16 +22,6 @@

],

'log' => [

'monolog' => env('INFLUXDB_LOG_MONOLOG', false),

'level' => env('INFLUXDB_LOG_LEVEL', 'DEBUG'),

'limit' => env('INFLUXDB_LOG_LIMIT', 5),

],

'timeout' => env('INFLUXDB_TIMEOUT', 5),

'verify_ssl' => env('INFLUXDB_VERIFY_SSL', true),
Expand Down

0 comments on commit cfe34c2

Please sign in to comment.