Bundle for all 3rd party PHP libraries used by Icinga Web products
Go to file
Thomas Gelf 2901edded9 composer: remove chrisboulton/php-resque
fixes #4
2019-03-25 16:09:04 +01:00
bin Support make-release on Macs 2019-01-24 09:35:44 +01:00
vendor vendor/autoload: no failure on master, show error 2018-11-06 13:11:01 +01:00
.gitignore .gitignore: ignore editor and swap files 2018-04-18 11:13:15 +02:00
README.md README: fix git instructions, show 'master' info 2018-11-21 22:04:13 +01:00
composer.json composer: remove chrisboulton/php-resque 2019-03-25 16:09:04 +01:00
module.info Change version to dev-master 2019-01-24 09:35:44 +01:00
run.php Initial commit 2017-10-27 14:41:48 +02:00

README.md

Icinga Web 2 - ReactPHP-based 3rd party libraries

This repository is an attempt to ship 3rd party libraries that might be useful for asynchronous PHP-based Icinga Web 2 modules. Please download the latest release and install it like any other module.

HINT: Do NOT install the GIT master, it will not work!

Sample Tarball installation

RELEASES="https://github.com/Icinga/icingaweb2-module-reactbundle/archive" \
&& MODULES_PATH="/usr/share/icingaweb2/modules" \
&& MODULE_VERSION=0.4.1 \
&& mkdir "$MODULES_PATH" \
&& wget -q $RELEASES/v${MODULE_VERSION}.tar.gz -O - \
   | tar xfz - -C "$MODULES_PATH" --strip-components 1
icingacli module enable reactbundle

Sample GIT installation

REPO="https://github.com/Icinga/icingaweb2-module-reactbundle" \
&& MODULES_PATH="/usr/share/icingaweb2/modules" \
&& MODULE_VERSION=0.4.1 \
&& mkdir -p "$MODULES_PATH" \
&& git clone ${REPO} "${MODULES_PATH}/reactbundle" --branch v${MODULE_VERSION}
icingacli module enable reactbundle

Developer Documentation

Add a new dependency

composer require author/library:version

Create a new release

./bin/make-release.sh <version>

e.g.

./bin/make-release.sh 0.1.0