librenms/composer.json
TheGreatDoc 9940c884f5 Fixed snmptraps. (#8898)
* Fixed snmptraps.

* Fixed space

* Added bgp down/up and authentication failure

* Fixed typo

* Fixed some typos, arrays, astext and format_hostname

* Updated documentation

* Moved code to a function

* Some refactor

* Minor fixes

* Minor fixes 2

* More minor fixes

* Changes requested by Tony

* Minor fixes

* Moved include to snmptrap.php

* Refactor traps to use object oriented code.

Should trigger events too/instead, but we'll leave that.
Testing todo

* Add tests and fix things so they actually work
Not checking events yet.

* Fixed typo and severity level

* Update composer deps, I think the lock file wasn't right.
add json and mbstring extension deps while I'm at it.

* Fix several issues with phpunit fixtures
2018-08-11 16:37:44 -05:00

103 lines
3.5 KiB
JSON

{
"name": "librenms/librenms",
"description": "A fully featured network monitoring system that provides a wealth of features and device support.",
"type": "project",
"keywords": ["network", "monitoring", "discovery", "alerting", "billing", "snmp", "distributed"],
"homepage": "http://www.librenms.org/",
"license": "GPL-3.0-or-later",
"support": {
"source": "https://github.com/librenms/librenms/",
"docs": "http://docs.librenms.org/",
"forum": "https://community.librenms.org/",
"issues": "https://github.com/librenms/librenms/issues/",
"irc": "irc://irc.freenode.org/#librenms"
},
"repositories":
[
{
"type": "vcs",
"url": "https://github.com/librenms/StringBladeCompiler"
}
],
"require": {
"php": ">=5.6.4",
"ext-mysqli": "*",
"ext-pcre": "*",
"ext-curl": "*",
"ext-session": "*",
"ext-xml": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ezyang/htmlpurifier": "^4.8",
"phpmailer/phpmailer": "^5.2.21",
"slim/slim": "^2.6",
"easybook/geshi": "^1.0.8",
"amenadiel/jpgraph": "^3.6",
"tecnickcom/tcpdf": "~6.2.0",
"xjtuwangke/passwordhash": "dev-master",
"pear/console_color2": "^0.1",
"pear/console_table": "^1.3",
"dapphp/radius": "^2.0",
"php-amqplib/php-amqplib": "^2.0",
"symfony/yaml": "^2.8",
"rmccue/requests": "^1.7",
"palanik/corsslim": "^1.1",
"influxdb/influxdb-php": "^1.14",
"laravel/laravel": "5.4.*",
"oriceon/toastr-5-laravel": "dev-master",
"wpb/string-blade-compiler": "3.4.x-dev",
"fico7489/laravel-pivot": "*",
"vlucas/phpdotenv": "2.4.0",
"doctrine/inflector": "1.1.*",
"symfony/event-dispatcher": "3.*",
"symfony/css-selector": "3.*",
"doctrine/instantiator": "1.0.*",
"phpdocumentor/reflection-docblock": "3.*",
"phpunit/php-token-stream": "1.*",
"myclabs/deep-copy": "1.7.*",
"nikic/php-parser": "v3.1.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.9.1",
"phpunit/phpunit": "5.*",
"jakub-onderka/php-parallel-lint": "*",
"jakub-onderka/php-console-highlighter": "*",
"fojuth/readmegen": "1.*",
"barryvdh/laravel-ide-helper": "^2.4",
"barryvdh/laravel-debugbar": "~2.4",
"justinrainbow/json-schema": "^5.2",
"fzaninotto/faker": "^1.8"
},
"suggest": {
"ext-memcached": "Required if you utilize distributed polling",
"ext-posix": "Allows for additional validation tests"
},
"autoload": {
"psr-4": {
"App\\": "app",
"LibreNMS\\": "LibreNMS",
"LibreNMS\\Plugins\\" : "html/plugins",
"LibreNMS\\Tests\\": "tests"
}
},
"scripts": {
"pre-update-cmd": "LibreNMS\\ComposerHelper::preUpdate",
"pre-install-cmd": "LibreNMS\\ComposerHelper::preInstall",
"post-root-package-install": "LibreNMS\\ComposerHelper::postRootPackageInstall",
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"LibreNMS\\ComposerHelper::postInstall",
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
}
}