From 1aa0681e0fa2a11ff8a38ad1c7c65918bb2174ba Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Fri, 9 Dec 2022 17:50:21 +0100 Subject: [PATCH] Require `ipl\scheduler` --- README.md | 1 + bin/make-snapshot.sh | 1 + composer.json | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 21c823f4..d743380e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ This project bundles all Icinga PHP libraries into one piece and can be integrat * [ipl-html](https://github.com/Icinga/ipl-html) * [ipl-i18n](https://github.com/Icinga/ipl-i18n) * [ipl-orm](https://github.com/Icinga/ipl-orm) +* [ipl-scheduler](https://github.com/Icinga/ipl-scheduler) * [ipl-sql](https://github.com/Icinga/ipl-sql) * [ipl-stdlib](https://github.com/Icinga/ipl-stdlib) * [ipl-validator](https://github.com/Icinga/ipl-validator) diff --git a/bin/make-snapshot.sh b/bin/make-snapshot.sh index f56aca26..688d9474 100755 --- a/bin/make-snapshot.sh +++ b/bin/make-snapshot.sh @@ -30,6 +30,7 @@ composer require --no-update \ ipl/html:"dev-main as 99.x-dev" \ ipl/i18n:"dev-main as 99.x-dev" \ ipl/orm:"dev-main as 99.x-dev" \ + ipl/scheduler:"dev-main as 99.x-dev" \ ipl/sql:"dev-main as 99.x-dev" \ ipl/stdlib:"dev-main as 99.x-dev" \ ipl/validator:"dev-main as 99.x-dev" \ diff --git a/composer.json b/composer.json index 84375b10..284bffb5 100644 --- a/composer.json +++ b/composer.json @@ -15,6 +15,7 @@ "ipl/html": "^0.6.0", "ipl/i18n": "^0.2.0", "ipl/orm": "^0.4.0", + "ipl/scheduler": "^0.1.0", "ipl/sql": "^0.6.0", "ipl/stdlib": "^0.12.0", "ipl/validator": "^0.4.0",