Remove links to freenode (#13101)

* Remove links to freenode

* Add funding links

* Sort composer
This commit is contained in:
Jellyfrog
2021-08-05 17:33:23 +02:00
committed by GitHub
parent 2f267ca739
commit 39eea7bdc7
4 changed files with 55 additions and 55 deletions

View File

@@ -3,7 +3,7 @@
Introduction Introduction
------------ ------------
LibreNMS is an autodiscovering PHP/MySQL/SNMP based network monitoring LibreNMS is an auto-discovering PHP/MySQL/SNMP based network monitoring
which includes support for a wide range of network hardware and operating which includes support for a wide range of network hardware and operating
systems including Cisco, Linux, FreeBSD, Juniper, Brocade, Foundry, HP and systems including Cisco, Linux, FreeBSD, Juniper, Brocade, Foundry, HP and
many more. many more.
@@ -14,10 +14,7 @@ We intend LibreNMS to be a viable project and community that:
- offers a welcoming, friendly environment for everyone. - offers a welcoming, friendly environment for everyone.
The [Debian Social Contract][10] will be the basis of our priority system, The [Debian Social Contract][10] will be the basis of our priority system,
and mutual respect is the basis of our behaviour towards others. For more and mutual respect is the basis of our behavior towards others.
about the culture we're trying to build, please read the [Freenode
philosophy][13], including [guidelines for running an IRC channel][6] and
[being a community catalyst][7].
Documentation Documentation
@@ -34,8 +31,8 @@ You can participate in the project by:
- Talking to us on [Discord][4] or [Twitter][3]. - Talking to us on [Discord][4] or [Twitter][3].
- Joining the [LibreNMS Community](https://community.librenms.org) - Joining the [LibreNMS Community](https://community.librenms.org)
- Improving the [documentation][5]. - Improving the [documentation][5].
- Cloning the [repo][2] and filing [pull requests][19] on github. - Cloning the [repository][2] and filing [pull requests][19] on GitHub.
- [Bug Reports](https://community.librenms.org) on our Community Fourms - [Bug Reports](https://community.librenms.org) on our Community Forums
- See [CONTRIBUTING][15] for more details. - See [CONTRIBUTING][15] for more details.
@@ -85,12 +82,9 @@ exception):
[3]: https://twitter.com/librenms "@LibreNMS on Twitter" [3]: https://twitter.com/librenms "@LibreNMS on Twitter"
[4]: https://discord.gg/librenms "Discord LibreNMS Server" [4]: https://discord.gg/librenms "Discord LibreNMS Server"
[5]: https://github.com/librenms/librenms/tree/master/doc/ [5]: https://github.com/librenms/librenms/tree/master/doc/
[6]: http://freenode.net/changuide "Freenode channel guidelines"
[7]: http://freenode.net/catalysts "Freenode community catalysts"
[8]: https://www.virtualbox.org/ "VirtualBox" [8]: https://www.virtualbox.org/ "VirtualBox"
[10]: http://www.debian.org/social_contract "Debian project social contract" [10]: http://www.debian.org/social_contract "Debian project social contract"
[11]: https://www.librenms.org/#downloads [11]: https://www.librenms.org/#downloads
[13]: http://freenode.net/philosophy.shtml "Freenode philosophy"
[14]: https://github.com/librenms/librenms/tree/master/LICENSE.txt [14]: https://github.com/librenms/librenms/tree/master/LICENSE.txt
[15]: https://docs.librenms.org/General/Contributing/ [15]: https://docs.librenms.org/General/Contributing/
[16]: https://docs.librenms.org/ [16]: https://docs.librenms.org/

View File

@@ -1,7 +1,7 @@
{ {
"name": "librenms/librenms", "name": "librenms/librenms",
"description": "A fully featured network monitoring system that provides a wealth of features and device support.",
"type": "project", "type": "project",
"description": "A fully featured network monitoring system that provides a wealth of features and device support.",
"keywords": [ "keywords": [
"network", "network",
"monitoring", "monitoring",
@@ -13,15 +13,8 @@
], ],
"homepage": "https://www.librenms.org/", "homepage": "https://www.librenms.org/",
"license": "GPL-3.0-or-later", "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": { "require": {
"php": "^7.3|^8.0", "php": "^7.3 || ^8.0",
"ext-curl": "*", "ext-curl": "*",
"ext-gd": "*", "ext-gd": "*",
"ext-json": "*", "ext-json": "*",
@@ -77,17 +70,26 @@
"staudenmeir/dusk-updater": "^1.1" "staudenmeir/dusk-updater": "^1.1"
}, },
"suggest": { "suggest": {
"ext-ldap": "*",
"ext-memcached": "Required if you utilize distributed polling", "ext-memcached": "Required if you utilize distributed polling",
"ext-posix": "Allows for additional validation tests",
"ext-mysqlnd": "*", "ext-mysqlnd": "*",
"ext-ldap": "*" "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"
]
}
}, },
"autoload": { "autoload": {
"exclude-from-classmap": [
"/vendor/laravel/laravel/database/",
"/vendor/laravel/laravel/app/",
"/html/plugins"
],
"psr-4": { "psr-4": {
"App\\": "app", "App\\": "app",
"LibreNMS\\": "LibreNMS", "LibreNMS\\": "LibreNMS",
@@ -101,26 +103,15 @@
], ],
"files": [ "files": [
"includes/helpers.php" "includes/helpers.php"
],
"exclude-from-classmap": [
"/vendor/laravel/laravel/database/",
"/vendor/laravel/laravel/app/",
"/html/plugins"
] ]
}, },
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform-check": true,
"discard-changes": true
},
"scripts": { "scripts": {
"pre-update-cmd": "LibreNMS\\ComposerHelper::preUpdate",
"pre-install-cmd": "LibreNMS\\ComposerHelper::preInstall", "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": [ "post-install-cmd": [
"LibreNMS\\ComposerHelper::postInstall", "LibreNMS\\ComposerHelper::postInstall",
"Illuminate\\Foundation\\ComposerScripts::postInstall", "Illuminate\\Foundation\\ComposerScripts::postInstall",
@@ -130,18 +121,33 @@
"@php artisan config:clear", "@php artisan config:clear",
"@python-requirements" "@python-requirements"
], ],
"pre-update-cmd": "LibreNMS\\ComposerHelper::preUpdate",
"post-update-cmd": [ "post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate" "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": [ "python-requirements": [
"scripts/check_requirements.py || pip3 install --user -r requirements.txt || :" "scripts/check_requirements.py || pip3 install --user -r requirements.txt || :"
] ]
}, },
"extra": { "support": {
"laravel": { "issues": "https://github.com/librenms/librenms/issues/",
"dont-discover": [ "forum": "https://community.librenms.org/",
"nunomaduro/laravel-console-summary" "chat": "https://discord.gg/librenms",
"source": "https://github.com/librenms/librenms/",
"docs": "https://docs.librenms.org/"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/librenms"
}
] ]
} }
}
}

6
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "20641974e2977b85a492b8cd89fd0fac", "content-hash": "7e036d2ebed332bf23de83ae6dd716a3",
"packages": [ "packages": [
{ {
"name": "amenadiel/jpgraph", "name": "amenadiel/jpgraph",
@@ -11449,7 +11449,7 @@
"prefer-stable": false, "prefer-stable": false,
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {
"php": "^7.3|^8.0", "php": "^7.3 || ^8.0",
"ext-curl": "*", "ext-curl": "*",
"ext-gd": "*", "ext-gd": "*",
"ext-json": "*", "ext-json": "*",
@@ -11460,5 +11460,5 @@
"ext-xml": "*" "ext-xml": "*"
}, },
"platform-dev": [], "platform-dev": [],
"plugin-api-version": "2.1.0" "plugin-api-version": "2.0.0"
} }

View File

@@ -62,20 +62,20 @@ Command | Description
### Server examples ### Server examples
Unencrypted Connection to `irc.freenode.org`: Unencrypted Connection to `irc.libera.chat`:
```php ```php
... ...
$config['irc_host'] = "irc.freenode.org"; $config['irc_host'] = "irc.libera.chat";
$config['irc_port'] = 6667; $config['irc_port'] = 6667;
... ...
``` ```
SSL-Encrypted Connection to `irc.freenode.org`: SSL-Encrypted Connection to `irc.libera.chat`:
```php ```php
... ...
$config['irc_host'] = "irc.freenode.org"; $config['irc_host'] = "irc.libera.chat";
$config['irc_port'] = "+6697"; $config['irc_port'] = "+6697";
... ...
``` ```