Skip to content

Commit 248750b

Browse files
Raise ipl requirement
1 parent 8658404 commit 248750b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

application/views/scripts/error/error.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $modReason = [];
2323

2424
if (isset($requiredVendor, $requiredProject) && $requiredVendor && $requiredProject) {
2525
// TODO: I don't like this, can we define requirements somewhere else?
26-
$coreDeps = ['icinga-php-library' => '>= 0.14.2', 'icinga-php-thirdparty' => '>= 0.12'];
26+
$coreDeps = ['icinga-php-library' => '>= 0.18.0', 'icinga-php-thirdparty' => '>= 0.12'];
2727

2828
foreach ($coreDeps as $libraryName => $requiredVersion) {
2929
if (! $libraries->has($libraryName)) {

doc/02-Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ You will need to install certain dependencies depending on your setup:
399399
monitor your infrastructure
400400
* A web server, e.g. Apache or Nginx
401401
* PHP version ≥ 7.2
402-
* [Icinga PHP Library (ipl)](https://github.com/Icinga/icinga-php-library) (≥ 0.14.2)
402+
* [Icinga PHP Library (ipl)](https://github.com/Icinga/icinga-php-library) (≥ 0.18.0)
403403
* [Icinga PHP Thirdparty](https://github.com/Icinga/icinga-php-thirdparty) (≥ 0.12)
404404
* The following PHP modules must be installed: cURL, json, gettext, fileinfo, intl, dom, OpenSSL and xml
405405
* The [pdfexport](https://github.com/Icinga/icingaweb2-module-pdfexport) module (≥0.10) is required for the

modules/setup/library/Setup/WebWizard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ public function getRequirements($skipModules = false)
602602
)));
603603

604604
$set->add(new WebLibraryRequirement(array(
605-
'condition' => ['icinga-php-library', '>=', '0.14.2'],
605+
'condition' => ['icinga-php-library', '>=', '0.18.0'],
606606
'alias' => 'Icinga PHP library',
607607
'description' => mt(
608608
'setup',

0 commit comments

Comments
 (0)