Require `ipl\scheduler`

This commit is contained in:
Yonas Habteab 2022-12-09 17:50:21 +01:00 committed by Johannes Meyer
parent e5ef360ca4
commit 1aa0681e0f
3 changed files with 3 additions and 0 deletions

View File

@ -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-html](https://github.com/Icinga/ipl-html)
* [ipl-i18n](https://github.com/Icinga/ipl-i18n) * [ipl-i18n](https://github.com/Icinga/ipl-i18n)
* [ipl-orm](https://github.com/Icinga/ipl-orm) * [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-sql](https://github.com/Icinga/ipl-sql)
* [ipl-stdlib](https://github.com/Icinga/ipl-stdlib) * [ipl-stdlib](https://github.com/Icinga/ipl-stdlib)
* [ipl-validator](https://github.com/Icinga/ipl-validator) * [ipl-validator](https://github.com/Icinga/ipl-validator)

View File

@ -30,6 +30,7 @@ composer require --no-update \
ipl/html:"dev-main as 99.x-dev" \ ipl/html:"dev-main as 99.x-dev" \
ipl/i18n:"dev-main as 99.x-dev" \ ipl/i18n:"dev-main as 99.x-dev" \
ipl/orm:"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/sql:"dev-main as 99.x-dev" \
ipl/stdlib:"dev-main as 99.x-dev" \ ipl/stdlib:"dev-main as 99.x-dev" \
ipl/validator:"dev-main as 99.x-dev" \ ipl/validator:"dev-main as 99.x-dev" \

View File

@ -15,6 +15,7 @@
"ipl/html": "^0.6.0", "ipl/html": "^0.6.0",
"ipl/i18n": "^0.2.0", "ipl/i18n": "^0.2.0",
"ipl/orm": "^0.4.0", "ipl/orm": "^0.4.0",
"ipl/scheduler": "^0.1.0",
"ipl/sql": "^0.6.0", "ipl/sql": "^0.6.0",
"ipl/stdlib": "^0.12.0", "ipl/stdlib": "^0.12.0",
"ipl/validator": "^0.4.0", "ipl/validator": "^0.4.0",