-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
43 lines (43 loc) · 1.22 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": "algatux/influxdb-bundle",
"description": "Bundle service integration of official influxdb/influxdb-php client",
"keywords": ["InfluxDB", "Symfony", "database"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alessandro Galli",
"email": "[email protected]"
},
{
"name": "Sullivan Senechal",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"influxdb/influxdb-php": "^1.2",
"symfony/console": "^4.4 || ^5.4 || ^6.4",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.4"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpspec/prophecy": "^1.10",
"symfony/form": "^4.4 || ^5.4 || ^6.4"
},
"suggest": {
"symfony/form": "Needed for form types usage",
"symfony/proxy-manager-bridge": "Needed to lazy-load connection services"
},
"autoload": {
"psr-4": { "Algatux\\InfluxDbBundle\\": "src/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}