maatify / cron-telegram-bot
PHP library for Cron Telegram Bot handler, known by our team
1.0.035
2024-10-23 04:33 UTC
Requires
- php: >=8.0
- ext-openssl: *
- maatify/db-model-v3: ^1.2
- maatify/emoji-replacer: ^1.0
- maatify/functions: ^1.2
- maatify/json: ^1.1
- maatify/jwt: ^1.0
- maatify/logger: ^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;