PHPackages                             maatify/cron-sms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. maatify/cron-sms

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

maatify/cron-sms
================

PHP library for Cron SMS handler, known by our team

5.0.1(9mo ago)01711proprietaryPHPPHP &gt;=8.4

Since Jul 26Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/Maatify/CronSms)[ Packagist](https://packagist.org/packages/maatify/cron-sms)[ Docs](https://github.com/Maatify/)[ RSS](/packages/maatify-cron-sms/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (8)Versions (12)Used By (1)

[![Current version](https://camo.githubusercontent.com/e1af0026ca69afb3c5d972d23ff8e748264e250151526244df827aec5651f518/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6161746966792f63726f6e2d736d73)](https://packagist.org/packages/maatify/cron-sms)[![Packagist PHP Version Support](https://camo.githubusercontent.com/a3cd65ba2a09adb851f8973dc705a4b6c9fb066371a0b8bf741d6a1f3921e2dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6d6161746966792f63726f6e2d736d73)](https://packagist.org/packages/maatify/cron-sms)[![Monthly Downloads](https://camo.githubusercontent.com/2b0f2db39850c91270a91693924611e9c9a175fa9b50288aa294317c13059a50/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f6d6161746966792f63726f6e2d736d73)](https://packagist.org/packages/maatify/routee/cron-sms)[![Total Downloads](https://camo.githubusercontent.com/f56ae4ae0b7e40ddb9a3a4f855fce0ddd3cbd7bc66a0a11ef7dd2c69b97f4280/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6161746966792f63726f6e2d736d73)](https://packagist.org/packages/maatify/routee/cron-sms)[![Stars](https://camo.githubusercontent.com/e5311f686c74223139fbebfa91070fc3489e293e98245e8103eb873e8881ac44/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f73746172732f6d6161746966792f63726f6e2d736d73)](https://github.com/maatify/CronSms/stargazers)

Installation
============

[](#installation)

```
composer require maatify/cron-sms
```

Database Structure
------------------

[](#database-structure)

`cron_sms` Structure used in single-language and multi-language
---------------------------------------------------------------

[](#cron_sms-structure-used-in-single-language-and-multi-language)

### Table structure for table `cron_sms`

[](#table-structure-for-table-cron_sms)

```
--
-- Table structure for table `cron_sms`
--

CREATE TABLE `cron_sms` (
    `cron_id` int(11) NOT NULL,
    `type_id` int(11) NOT NULL DEFAULT '1' COMMENT '1=message; 2=confirm; 3=Password',
    `recipient_id` int(11) NOT NULL DEFAULT '0',
    `recipient_type` varchar(64) NOT NULL DEFAULT '',
    `phone` varchar(128) NOT NULL DEFAULT '',
    `message` mediumtext,
    `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_sms`
--
ALTER TABLE `cron_sms`
  ADD PRIMARY KEY (`cron_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `cron_sms`
--
ALTER TABLE `cron_sms`
  MODIFY `cron_id` int NOT NULL AUTO_INCREMENT;
COMMIT;
```

Next Structures for multi-language
----------------------------------

[](#next-structures-for-multi-language)

### Table structure for table `cron_sms_type`

[](#table-structure-for-table-cron_sms_type)

```
--
-- Table structure for table `cron_sms_type`
--

CREATE TABLE `cron_sms_type` (
                                 `type_id` int NOT NULL,
                                 `type_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `cron_sms_type`
--

INSERT INTO `cron_sms_type` (`type_id`, `type_name`) VALUES
     (1, 'message'),
     (2, 'otp'),
     (3, 'forget-password');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `cron_sms_type`
--
ALTER TABLE `cron_sms_type`
    ADD PRIMARY KEY (`type_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `cron_sms_type`
--
ALTER TABLE `cron_sms_type`
    MODIFY `type_id` int NOT NULL AUTO_INCREMENT;
COMMIT;
```

### Table structure for table `cron_sms_type_message`

[](#table-structure-for-table-cron_sms_type_message)

```
--
-- Table structure for table `cron_sms_type_message`
--

CREATE TABLE `cron_sms_type_message` (
     `type_id` int NOT NULL DEFAULT '1',
     `language_id` int NOT NULL DEFAULT '1',
     `message` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `cron_sms_type_message`
--
ALTER TABLE `cron_sms_type_message`
    ADD UNIQUE KEY `type_id` (`type_id`,`language_id`) USING BTREE;
COMMIT;
```

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance58

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 97.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~38 days

Recently: every ~47 days

Total

11

Last Release

279d ago

Major Versions

1.x-dev → 2.0.00012025-02-08

2.0.0003 → 5.0.12025-08-10

PHP version history (4 changes)1.0.019PHP &gt;=8.0

1.0.024PHP &gt;=8.1

1.3.0001PHP &gt;=8.2

5.0.1PHP &gt;=8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/1a885a0810f2762586520ab284c9019aaf0b650b53cdf2a6c13ea10931bb7795?d=identicon)[Maatify](/maintainers/Maatify)

---

Top Contributors

[![megyptm](https://avatars.githubusercontent.com/u/33574895?v=4)](https://github.com/megyptm "megyptm (37 commits)")[![Maatify](https://avatars.githubusercontent.com/u/130119162?v=4)](https://github.com/Maatify "Maatify (1 commits)")

---

Tags

phpsmscronhandlermaatify.devCron SMS handler

### Embed Badge

![Health badge](/badges/maatify-cron-sms/health.svg)

```
[![Health](https://phpackages.com/badges/maatify-cron-sms/health.svg)](https://phpackages.com/packages/maatify-cron-sms)
```

###  Alternatives

[pmill/php-scheduler

Simple PHP task scheduler

1833.5k](/packages/pmill-php-scheduler)[amirbagh75/smsir-php

Unofficial sms.ir PHP Package

181.2k](/packages/amirbagh75-smsir-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
