maatify / cron-telegram-bot
PHP library for Cron Telegram Bot handler, known by our team
2.0.0001
2025-02-08 12:25 UTC
Requires
- php: >=8.2
- ext-openssl: *
- maatify/jwt: ^1.0
- maatify/language-portal-handler: ^1.0
- maatify/open-ssl: ^1.0
- maatify/post-validator-v2: ^1.1
- maatify/queue-manager: ^1.0
- maatify/telegram-bot: ^2.0
README
Installation
composer require maatify/cron-email
Database Structure
-- -- Database: `maatify` -- -- -------------------------------------------------------- -- -- Table structure for table `cron_telegram_bot` -- CREATE TABLE `cron_telegram_bot` ( `cron_id` int(11) NOT NULL, `type_id` int(11) NOT NULL DEFAULT '1' COMMENT '1=OTP; 2=Temp Password; 3=message', `recipient_id` int(11) NOT NULL DEFAULT '0', `recipient_type` varchar(64) NOT NULL DEFAULT '', `chat_id` int(11) NOT NULL DEFAULT '0', `message` text, `record_time` datetime NOT NULL DEFAULT '1900-01-01 00:00:00', `status` tinyint(1) NOT NULL DEFAULT '0', `sent_time` datetime NOT NULL DEFAULT '1900-01-01 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Indexes for dumped tables -- -- -- Indexes for table `cron_telegram_bot` -- ALTER TABLE `cron_telegram_bot` ADD PRIMARY KEY (`cron_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `cron_telegram_bot` -- ALTER TABLE `cron_telegram_bot` MODIFY `cron_id` int(11) NOT NULL AUTO_INCREMENT;