Skip to content

Commit

Permalink
Compatible to laravel > 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Nov 24, 2018
1 parent 5120b28 commit cb2c2c6
Show file tree
Hide file tree
Showing 161 changed files with 99 additions and 31,088 deletions.
38 changes: 0 additions & 38 deletions .scrutinizer.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .styleci.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

28 changes: 4 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
# Laravel 5.5+ InfluxDB Database Package

[![Current Release](https://img.shields.io/github/release/austinheap/laravel-database-influxdb.svg)](https://github.com/austinheap/laravel-database-influxdb/releases)
[![Total Downloads](https://img.shields.io/packagist/dt/austinheap/laravel-database-influxdb.svg)](https://packagist.org/packages/austinheap/laravel-database-influxdb)
[![Build Status](https://travis-ci.org/austinheap/laravel-database-influxdb.svg?branch=master)](https://travis-ci.org/austinheap/laravel-database-influxdb)
[![Dependency Status](https://gemnasium.com/badges/github.com/austinheap/laravel-database-influxdb.svg)](https://gemnasium.com/github.com/austinheap/laravel-database-influxdb)
[![Scrutinizer CI](https://scrutinizer-ci.com/g/austinheap/laravel-database-influxdb/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/austinheap/laravel-database-influxdb/)
[![StyleCI](https://styleci.io/repos/110926889/shield?branch=master)](https://styleci.io/repos/110926889)
[![Maintainability](https://api.codeclimate.com/v1/badges/b88fde39b479c53d0df4/maintainability)](https://codeclimate.com/github/austinheap/laravel-database-influxdb/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/b88fde39b479c53d0df4/test_coverage)](https://codeclimate.com/github/austinheap/laravel-database-influxdb/test_coverage)
[![SensioLabs](https://insight.sensiolabs.com/projects/dc020687-c653-42f0-b006-79d5c7742fb0/mini.png)](https://insight.sensiolabs.com/projects/dc020687-c653-42f0-b006-79d5c7742fb0)

## A package for accessing InfluxDB from Laravel 5.5+, based on configuration settings.

There is [documentation for `laravel-database-influxdb` online](https://austinheap.github.io/laravel-database-influxdb/),
the source of which is in the [`docs/`](https://github.com/austinheap/laravel-database-influxdb/tree/master/docs)
directory. The most logical place to start are the [docs for the `InfluxDbServiceProvider` class](https://austinheap.github.io/laravel-database-influxdb/classes/AustinHeap.Database.InfluxDb.InfluxDbServiceProvider.html).
# Laravel 5.6+ InfluxDB Database Package

## Installation

Expand All @@ -23,15 +7,15 @@ directory. The most logical place to start are the [docs for the `InfluxDbServic
Via Composer command line:

```bash
$ composer require austinheap/laravel-database-influxdb
$ composer require visualappeal/laravel-database-influxdb
```

Or add the package to your `composer.json`:

```json
{
"require": {
"austinheap/laravel-database-influxdb": "0.1.*"
"visualappeal/laravel-database-influxdb": "0.1.*"
}
}
```
Expand All @@ -44,7 +28,6 @@ If you would like to declare the provider and/or alias explicitly, then add the

```php
'providers' => [
//
AustinHeap\Database\InfluxDb\InfluxDbServiceProvider::class,
];
```
Expand All @@ -53,7 +36,6 @@ And then add the alias to your `config/app.php`:

```php
'aliases' => [
//
'InfluxDb' => AustinHeap\Database\InfluxDb\InfluxDbFacade::class,
];
```
Expand Down Expand Up @@ -85,9 +67,7 @@ INFLUXDB_HOST=my-influxdb.server

## Credits

This is a fork of [pdffiller/laravel-influx-provider](https://github.com/pdffiller/laravel-influx-provider).

- [pdffiller/laravel-influx-provider Contributors](https://github.com/pdffiller/laravel-influx-provider/graphs/contributors)
This is a fork of [austinheap/laravel-database-influxdb](https://github.com/austinheap/laravel-database-influxdb).

## License

Expand Down
19 changes: 12 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "austinheap/laravel-database-influxdb",
"name": "visualappeal/laravel-database-influxdb",
"description": "A package for accessing InfluxDB from Laravel 5.5+, based on configuration settings.",
"keywords": [
"influx",
Expand All @@ -17,18 +17,23 @@
"email": "[email protected]",
"homepage": "https://github.com/austinheap",
"role": "Developer"
},
{
"name": "Tim Helfensdörfer",
"email": "[email protected]",
"homepage": "https://github.com/thelfensdrfer"
}
],
"require": {
"laravel/framework": "5.5.*|5.6.*",
"illuminate/log": "5.5.*|5.6.*",
"illuminate/support": "5.5.*|5.6.*",
"influxdb/influxdb-php": "^1.14.4",
"monolog/monolog": "~1.12"
"laravel/framework": ">=5.6",
"illuminate/log": ">=5.6",
"illuminate/support": ">=5.6",
"influxdb/influxdb-php": "1.14.*",
"monolog/monolog": "1.24.*"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master",
"phpunit/phpunit": "~6.0"
"phpunit/phpunit": "7.4.*"
},
"autoload": {
"psr-4": {
Expand Down
55 changes: 0 additions & 55 deletions docs/checkstyle.xml

This file was deleted.

Loading

0 comments on commit cb2c2c6

Please sign in to comment.