-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
38 lines (38 loc) · 996 Bytes
/
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
{
"name": "pdffiller/laravel-influx-provider",
"description": "Service provider to set up and use InfluxDB SDK in Laravel 5",
"keywords": ["influx-db", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Anton Balandin",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^7.1.3",
"illuminate/log": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
"illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
"influxdb/influxdb-php": "1.14.*",
"monolog/monolog": "^1.19"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"Pdffiller\\LaravelInfluxProvider\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Pdffiller\\LaravelInfluxProvider\\InfluxDBServiceProvider"
],
"aliases": {
"Influx": "Pdffiller\\LaravelInfluxProvider\\InfluxDBFacade"
}
}
}
}