mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Allow trusted proxy via APP_TRUSTED_PROXIES Set to '*' by default to emulate legacy behavior. Set up doc describing environment variables * Create helper to parse environment variables into arrays properly. * Update doc blocks
105 lines
3.6 KiB
JSON
105 lines
3.6 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-mysqlnd": "*",
|
|
"ext-pdo": "*",
|
|
"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": "*",
|
|
"fideloper/proxy": "^4.0",
|
|
|
|
"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"
|
|
]
|
|
}
|
|
}
|