PHPackages                             ahmed-aliraqi/expert-texting-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. [HTTP &amp; Networking](/categories/http)
4. /
5. ahmed-aliraqi/expert-texting-sms

ActiveLibrary[HTTP &amp; Networking](/categories/http)

ahmed-aliraqi/expert-texting-sms
================================

ExpertTexting REST API for laravel applications allows you to send text and unicode messages, read unread messages, check your account balance etc. ExpertTexting API is served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.

1.0.1(9y ago)01.3kMITPHP

Since May 3Pushed 9y agoCompare

[ Source](https://github.com/ahmed-aliraqi/expert-texting-sms)[ Packagist](https://packagist.org/packages/ahmed-aliraqi/expert-texting-sms)[ RSS](/packages/ahmed-aliraqi-expert-texting-sms/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (3)Used By (0)

Introduction
------------

[](#introduction)

ExpertTexting REST API for Laravel applications allows you to send text and unicode messages, read unread messages, check your account balance etc. ExpertTexting API is served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.

Documentation
-------------

[](#documentation)

- Send message :  .
- Get status :  .
- Retrieve account balance :  .
- List unread received messages :  .

Instalition
-----------

[](#instalition)

- first create a new account in expert texting

    ```
      composer require ahmed-aliraqi/expert-texting-sms

    ```
- add provider class to app.php in config folder .

    ```
      Aliraqi\ET\ServiceProvider::class,

    ```
- add aliases class

    ```
      'SMS' => Aliraqi\ET\SMSFasade::class,

    ```
- then call this command from terminal

    ```
      php artisan vendor:publish

    ```

    you can get this file from this path on your project `config/sms_et.php`

    ```
      return [
          /**
           * All requests require your user credentials & API key, which you can find under "Account Settings"
           * in [https://www.experttexting.com/appv2/Dashboard/Profile] .
           */
          'username' => '', // Required. Your ET username. Ex: starcity

          'password' => '', // Required. Your ET password. Ex: StarCity123

          'api_key' => '',  // Required. Your API key. Ex: sswmp8r7l63y
      ];

    ```

Usage
-----

[](#usage)

- Sends a text or unicode message. :

    ```
      $sms = SMS::from('YourName')
      	->to('PhoneNumber')
      	->Message('Hello World')
      	->send();

      // Get response object.
      dd($sms->getResponse());

    ```

    result

    ```
      {
         "Response": {
            "message_id": "671729375",
            "message_count": 1,
            "price": 0.0085
         },
         "ErrorMessage": "",
         "Status": 0
      }

    ```
- Search a previously sent message for a given message id.

    ```
      SMS::getStatus($messageId)->getResponse();

    ```
- List all unread received messages.

    ```
      SMS::getUnreadInbox()->getResponse();

    ```
- Retrieve your current account balance.

    ```
      SMS::getBalance()->getResponse();

    ```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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

Every ~0 days

Total

2

Last Release

3296d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23261109?v=4)[Ahmed Fathy](/maintainers/ahmed-aliraqi)[@ahmed-aliraqi](https://github.com/ahmed-aliraqi)

---

Top Contributors

[![ahmed-aliraqi](https://avatars.githubusercontent.com/u/23261109?v=4)](https://github.com/ahmed-aliraqi "ahmed-aliraqi (4 commits)")

### Embed Badge

![Health badge](/badges/ahmed-aliraqi-expert-texting-sms/health.svg)

```
[![Health](https://phpackages.com/badges/ahmed-aliraqi-expert-texting-sms/health.svg)](https://phpackages.com/packages/ahmed-aliraqi-expert-texting-sms)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)

PHPackages © 2026

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