-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
36 lines (36 loc) · 1005 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
{
"name": "ncareau/mikro-watch",
"description": "Get and push data from Mikrotik Accounting to influxdb.",
"homepage": "https://github.com/ncareau/mikro-watch",
"license": "MIT",
"authors": [
{
"name": "NMC",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"symfony/console": "^5.4",
"symfony/var-dumper": "^5.4",
"symfony/error-handler": "^5.4",
"symfony/dotenv": "^5.4",
"symfony/event-dispatcher": "^5.4",
"guzzlehttp/guzzle": "^7.5",
"s1lentium/iptools": "dev-master#88be1aaaab3c50fc131ebe778e246215ff006d8e",
"influxdb/influxdb-php": "^1.15",
"wrep/daemonizable-command": "^3.1"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "9.5.25"
},
"scripts": {
"test": "phpunit tests --coverage-clover=coverage.xml"
}
}