diff --git a/README.md b/README.md index 21c823f..d743380 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 f56aca2..688d947 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 84375b1..284bffb 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",