mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
159 lines
5.3 KiB
JSON
159 lines
5.3 KiB
JSON
{
|
|
"name": "librenms/librenms",
|
|
"type": "project",
|
|
"description": "A fully featured network monitoring system that provides a wealth of features and device support.",
|
|
"keywords": [
|
|
"network",
|
|
"monitoring",
|
|
"discovery",
|
|
"alerting",
|
|
"billing",
|
|
"snmp",
|
|
"distributed"
|
|
],
|
|
"homepage": "https://www.librenms.org/",
|
|
"license": "GPL-3.0-or-later",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-curl": "*",
|
|
"ext-gd": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-pcre": "*",
|
|
"ext-pdo": "*",
|
|
"ext-session": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-xml": "*",
|
|
"ext-zlib": "*",
|
|
"amenadiel/jpgraph": "^4",
|
|
"clue/socket-raw": "^1.4",
|
|
"dapphp/radius": "^3.0",
|
|
"doctrine/dbal": "^2.13",
|
|
"easybook/geshi": "^1.0.8",
|
|
"ezyang/htmlpurifier": "^4.8",
|
|
"fico7489/laravel-pivot": "^3.0",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"influxdb/influxdb-php": "^1.15",
|
|
"justinrainbow/json-schema": "^5.2",
|
|
"laravel-notification-channels/webpush": "^7.0",
|
|
"laravel/framework": "^9.36",
|
|
"laravel/tinker": "^2.7",
|
|
"laravel/ui": "^4.0",
|
|
"librenms/laravel-vue-i18n-generator": "^0.1.46",
|
|
"mews/purifier": "^3.3",
|
|
"nunomaduro/laravel-console-summary": "^1.8",
|
|
"pear/console_color2": "^0.1",
|
|
"pear/console_table": "^1.3",
|
|
"pear/net_dns2": "^1.5",
|
|
"php-amqplib/php-amqplib": "^3.1",
|
|
"php-flasher/flasher-laravel": "^0.9",
|
|
"phpmailer/phpmailer": "~6.0",
|
|
"predis/predis": "^2.0",
|
|
"socialiteproviders/manager": "^4.1",
|
|
"spatie/laravel-ignition": "^1.4",
|
|
"symfony/yaml": "^6.0",
|
|
"tecnickcom/tcpdf": "^6.4",
|
|
"tightenco/ziggy": "^0.9"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.6",
|
|
"barryvdh/laravel-ide-helper": "^2.12",
|
|
"composer/composer": "^2.4",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"friendsofphp/php-cs-fixer": "^v3.4",
|
|
"laravel/dusk": "^7.1",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^6.3",
|
|
"nunomaduro/larastan": "^2.0",
|
|
"php-parallel-lint/php-parallel-lint": "^1.1",
|
|
"phpstan/phpstan-deprecation-rules": "^1.0",
|
|
"phpstan/phpstan-mockery": "^1.0",
|
|
"phpunit/phpunit": "^9.5.10",
|
|
"staudenmeir/dusk-updater": "^1.2"
|
|
},
|
|
"suggest": {
|
|
"ext-gmp": "Used for browser push notifications",
|
|
"ext-ldap": "*",
|
|
"ext-memcached": "Required if you utilize wrapper based distributed polling",
|
|
"ext-mysqlnd": "*",
|
|
"ext-posix": "Allows for additional validation tests"
|
|
},
|
|
"config": {
|
|
"discard-changes": true,
|
|
"optimize-autoloader": true,
|
|
"platform-check": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"nunomaduro/laravel-console-summary",
|
|
"facade/ignition",
|
|
"socialiteproviders/manager"
|
|
]
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app",
|
|
"LibreNMS\\": "LibreNMS",
|
|
"LibreNMS\\Plugins\\": "html/plugins",
|
|
"LibreNMS\\Tests\\": "tests",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"classmap": [
|
|
"vendor/dapphp/radius"
|
|
],
|
|
"files": [
|
|
"includes/helpers.php"
|
|
],
|
|
"exclude-from-classmap": [
|
|
"/vendor/laravel/laravel/database/",
|
|
"/vendor/laravel/laravel/app/",
|
|
"/html/plugins"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"pre-install-cmd": "LibreNMS\\ComposerHelper::preInstall",
|
|
"post-install-cmd": [
|
|
"LibreNMS\\ComposerHelper::postInstall",
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
|
"@php artisan vue-i18n:generate --multi-locales --format=umd",
|
|
"@php artisan view:cache",
|
|
"@php artisan optimize",
|
|
"@php artisan config:clear",
|
|
"@python-requirements"
|
|
],
|
|
"pre-update-cmd": "LibreNMS\\ComposerHelper::preUpdate",
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-root-package-install": "LibreNMS\\ComposerHelper::postRootPackageInstall",
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"python-requirements": [
|
|
"scripts/dynamic_check_requirements.py || pip3 install --user -r requirements.txt || :"
|
|
]
|
|
},
|
|
"support": {
|
|
"issues": "https://github.com/librenms/librenms/issues/",
|
|
"forum": "https://community.librenms.org/",
|
|
"chat": "https://discord.gg/librenms",
|
|
"source": "https://github.com/librenms/librenms/",
|
|
"docs": "https://docs.librenms.org/"
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/librenms"
|
|
}
|
|
]
|
|
}
|