PHPackages                             maymeow/cakephp-twilio - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. maymeow/cakephp-twilio

ActiveCakephp-plugin[Mail &amp; Notifications](/categories/mail)

maymeow/cakephp-twilio
======================

CakephpTwilio plugin for CakePHP

v1.0(5y ago)113MITPHPPHP &gt;=7.2CI failing

Since Jun 2Pushed 5y ago1 watchersCompare

[ Source](https://github.com/MayMeow/cakephp-twilio)[ Packagist](https://packagist.org/packages/maymeow/cakephp-twilio)[ RSS](/packages/maymeow-cakephp-twilio/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

CakephpTwilio plugin for CakePHP
================================

[](#cakephptwilio-plugin-for-cakephp)

Installation
------------

[](#installation)

You can install this plugin into your CakePHP application using [composer](https://getcomposer.org).

The recommended way to install composer packages is:

```
composer require maymeow/cakephp-twilio

```

Open your `src/Application.php` file and load module

```
//add into bootstrap function
$this->addPlugin('CakephpTwilio');
```

To load component add it to `src/AppController.php` for whole application or to any of your controllers by demand.

```
$this->loadComponent('CakephpTwilio.Twilio');
```

Configuration
-------------

[](#configuration)

This plugin using Twilio/SDK. To sending SMS, Twilio account is required. From your number management in settings recieve your SID and TOKEN and add following lines to your config file `config/app_local.php`:

```
[
//... other configuration

    /**
     * Twilio SMS gate configuration
     */
    'Twilio' => [
        /**
         * From: use mobile phone number or string A-Za-z1-0 max length 11 characters
         * @see https://www.twilio.com/docs
         */
        'From' => '_NUMBER_OR_TEXT_',
        'Sid' => '_YOUR_SID_',
        'Token' => '_YOUR_TOKEN_'
    ],

// ... end of file
];
```

How to use it
-------------

[](#how-to-use-it)

You can send message from any controller using Twilio component

```
use CakephpTwilio\Model\Message;

$this->Twilio
    ->send(new Message('PhoneNumber', "Text"));
```

if you want change `from` variable

```
$this->Twilio
    ->send(new Message('PhoneNumber', "Text", "NumberOrText"));
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

2172d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f7c2bca298b9947b96e7d8ecc3e58d2a63caf97adb52d28c07dc8b9468cdabb6?d=identicon)[maymeow](/maintainers/maymeow)

---

Top Contributors

[![MayMeow](https://avatars.githubusercontent.com/u/3164256?v=4)](https://github.com/MayMeow "MayMeow (7 commits)")

---

Tags

cakephpcakephp-pluginmessagingnotificationsphpsmstwilio

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/maymeow-cakephp-twilio/health.svg)

```
[![Health](https://phpackages.com/badges/maymeow-cakephp-twilio/health.svg)](https://phpackages.com/packages/maymeow-cakephp-twilio)
```

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[simplesoftwareio/simple-sms

Simple-SMS is a package made for Laravel to send/receive (polling/pushing) text messages. Currently supports CalLFire, EZTexting, Email Gateways, FlowRoute, LabsMobile, Mozeo, Nexmo, Plivo, Twilio, and Zenvia

20845.7k5](/packages/simplesoftwareio-simple-sms)[lorenzo/cakephp-email-queue

Queue, preview and and send emails stored in the database

57121.5k1](/packages/lorenzo-cakephp-email-queue)[narendravaghela/cakephp-mailgun

Mailgun plugin for CakePHP - Send emails using Mailgun API

23356.6k](/packages/narendravaghela-cakephp-mailgun)[iandenh/cakephp-sendgrid

SendgridEmail plugin for CakePHP

16123.4k](/packages/iandenh-cakephp-sendgrid)[tomatophp/filament-twilio

Send Whatsapp messages using Twilio and native filament Notification Facade class

112.3k](/packages/tomatophp-filament-twilio)

PHPackages © 2026

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