mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Fix disabling of built-in commands when using ./lnms in production It wasn't working correctly after Laravel upstream changes * Use nunomaduro/laravel-console-summary * fix command name Co-authored-by: Tony Murray <murraytony@gmail.com>
142 lines
4.7 KiB
JSON
142 lines
4.7 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"
|
|
},
|
|
"require": {
|
|
"php": "^7.3",
|
|
"ext-curl": "*",
|
|
"ext-gd": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-pcre": "*",
|
|
"ext-pdo": "*",
|
|
"ext-session": "*",
|
|
"ext-xml": "*",
|
|
"amenadiel/jpgraph": "^3.6",
|
|
"clue/socket-raw": "^1.4",
|
|
"dapphp/radius": "^2.0",
|
|
"darkghosthunter/larapoke": "dev-master",
|
|
"doctrine/dbal": "^2.11",
|
|
"easybook/geshi": "^1.0.8",
|
|
"ezyang/htmlpurifier": "^4.8",
|
|
"fico7489/laravel-pivot": "^3.0",
|
|
"fideloper/proxy": "^4.2",
|
|
"fruitcake/laravel-cors": "^2.0",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"influxdb/influxdb-php": "^1.14",
|
|
"laravel/framework": "^8.10",
|
|
"laravel/tinker": "^2.0",
|
|
"laravel/ui": "^3.0",
|
|
"librenms/laravel-vue-i18n-generator": "^0.1.46",
|
|
"nunomaduro/laravel-console-summary": "^1.7",
|
|
"oriceon/toastr-5-laravel": "dev-master",
|
|
"pear/console_color2": "^0.1",
|
|
"pear/console_table": "^1.3",
|
|
"php-amqplib/php-amqplib": "^2.0",
|
|
"phpmailer/phpmailer": "~6.0",
|
|
"predis/predis": "^1.1",
|
|
"rmccue/requests": "^1.7",
|
|
"symfony/yaml": "^4.0",
|
|
"tecnickcom/tcpdf": "~6.2.0",
|
|
"tightenco/ziggy": "^0.9",
|
|
"wpb/string-blade-compiler": "^6.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.5",
|
|
"barryvdh/laravel-ide-helper": "^2.8",
|
|
"facade/ignition": "^2.3.6",
|
|
"friendsofphp/php-cs-fixer": "^2.16",
|
|
"fzaninotto/faker": "^1.9.1",
|
|
"justinrainbow/json-schema": "^5.2",
|
|
"laravel/dusk": "^6.7",
|
|
"mockery/mockery": "^1.3.1",
|
|
"nunomaduro/collision": "^5.0",
|
|
"php-parallel-lint/php-parallel-lint": "^1.1",
|
|
"phpunit/phpunit": "^9.3",
|
|
"staudenmeir/dusk-updater": "^1.1"
|
|
},
|
|
"suggest": {
|
|
"ext-memcached": "Required if you utilize distributed polling",
|
|
"ext-posix": "Allows for additional validation tests",
|
|
"ext-mysqlnd": "*",
|
|
"ext-ldap": "*"
|
|
},
|
|
"autoload": {
|
|
"exclude-from-classmap": [
|
|
"/vendor/laravel/laravel/database/",
|
|
"/vendor/laravel/laravel/app/",
|
|
"/html/plugins"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app",
|
|
"LibreNMS\\": "LibreNMS",
|
|
"LibreNMS\\Plugins\\": "html/plugins",
|
|
"LibreNMS\\Tests\\": "tests",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"files": [
|
|
"includes/helpers.php"
|
|
]
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"platform-check": true,
|
|
"discard-changes": true
|
|
},
|
|
"scripts": {
|
|
"pre-update-cmd": "LibreNMS\\ComposerHelper::preUpdate",
|
|
"pre-install-cmd": "LibreNMS\\ComposerHelper::preInstall",
|
|
"post-root-package-install": "LibreNMS\\ComposerHelper::postRootPackageInstall",
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"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"
|
|
],
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
|
|
],
|
|
"python-requirements": [
|
|
"scripts/check_requirements.py || pip3 install --user -r requirements.txt || :"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"nunomaduro/laravel-console-summary"
|
|
]
|
|
}
|
|
}
|
|
}
|