mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix upstream stupidity. They required 32bit in 2.0.0, but didn't mark it then released 2.0.1 to fix that, but didn't pull 2.0.0. Add explicit requirement for <2.0 to avoid the whole mess for now. But that means we'll have to fix it down the road again.
186 lines
5.6 KiB
JSON
186 lines
5.6 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": "^3.5",
|
|
"easybook/geshi": "^1.0.8",
|
|
"ezyang/htmlpurifier": "^4.8",
|
|
"fico7489/laravel-pivot": "^3.0",
|
|
"influxdata/influxdb-client-php": "^3.4",
|
|
"influxdb/influxdb-php": "^1.15",
|
|
"justinrainbow/json-schema": "^5.2",
|
|
"laravel-notification-channels/webpush": "^7.1",
|
|
"laravel/framework": "^10.8",
|
|
"laravel/tinker": "^2.8",
|
|
"laravel/ui": "^4.2",
|
|
"librenms/laravel-vue-i18n-generator": "dev-master",
|
|
"librenms/plugin-interfaces": "^1.0",
|
|
"mews/purifier": "^3.4",
|
|
"nunomaduro/laravel-console-summary": "^1.9",
|
|
"paragonie/sodium_compat": "<2.0",
|
|
"pear/console_color2": "^0.1",
|
|
"pear/console_table": "^1.3",
|
|
"pear/net_dns2": "^1.5",
|
|
"php-amqplib/php-amqplib": "^3.1",
|
|
"phpmailer/phpmailer": "~6.0",
|
|
"predis/predis": "^2.0",
|
|
"silber/bouncer": "^1.0",
|
|
"socialiteproviders/manager": "^4.3",
|
|
"spatie/laravel-ignition": "^2.0",
|
|
"symfony/yaml": "^6.2",
|
|
"tecnickcom/tcpdf": "^6.4",
|
|
"tightenco/ziggy": "^1.6.0"
|
|
},
|
|
"require-dev":
|
|
{
|
|
"barryvdh/laravel-debugbar": "^3.8",
|
|
"barryvdh/laravel-ide-helper": "^2.13",
|
|
"composer/composer": "^2.4",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"friendsofphp/php-cs-fixer": "^v3.4",
|
|
"larastan/larastan": "^2.9",
|
|
"laravel/dusk": "^8.2.2",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^7.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"
|
|
},
|
|
"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,
|
|
"allow-plugins": {
|
|
"php-http/discovery": false
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
],
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|