PHPackages                             acidf0x/laracool - 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. [API Development](/categories/api)
4. /
5. acidf0x/laracool

ActiveLibrary[API Development](/categories/api)

acidf0x/laracool
================

CoolSMS SDK Wrapper for Laravel

v1.0.0(7y ago)1137MITPHP

Since Sep 13Pushed 7y agoCompare

[ Source](https://github.com/0xFoxTail/Cool-SMS-Laravel)[ Packagist](https://packagist.org/packages/acidf0x/laracool)[ RSS](/packages/acidf0x-laracool/feed)WikiDiscussions master Synced today

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

Cool SMS Laravel
================

[](#cool-sms-laravel)

[CoolSMS PHP SDK](https://github.com/coolsms/php-sdk) Wrapper for Laravel

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

[](#installation)

install using composer:

```
 composer require acidf0x/laracool
```

Then publish the package configuration using Artisan:

```
 php artisan vendor:publish --provider=AcidF0x\LaraCool\CoolSMSServiceProvider
```

Update your settings in the generated app/config/coolsms.php configuration file.

```
return [
    // api_key and api_secret can be obtained from coolsms.co.kr
    'api' => [
        'key' => 'YOUR_API_KEY',
        'secret' => 'YOUR_API_SECRET',
    ],
];
```

The `AcidF0x\LaraCool\CoolSMSServiceProvider` is auto-discovered and registered by default, but if you want to register it yourself: Add the ServiceProvider in `config/app.php`

```
'providers' => [
    ...
    ...
    AcidF0x\LaraCool\CoolSMSServiceProvider::class,
]
```

The `CoolSMS` facade is also auto-discovered, but if you want to add it manually: Add the Facade in `config/app.php`

```
'aliases' => [
    ...
    'CoolSMS' => AcidF0x\LaraCool\Facades\CoolSMS::class,
]
```

Basic Usage
-----------

[](#basic-usage)

```
use AcidF0x\LaraCool\Facades\CoolSMS;
use Nurigo\Exceptions\CoolsmsException;

  try {
      // 4 options(to, from, type, text) are mandatory. must be filled
      $options = new \stdClass();
      $options->to = '01000000000';
      $options->from = '0100000000';
      $options->type = 'SMS';
      $options->text = 'text';
      $result = CoolSMS::message()->send($options);
      dump($result);
  } catch (CoolsmsException $e) {
      dump($e->getMessage()); // get error message
      dump($e->getResponseCode()); // get 'api.coolsms.co.kr' response code
  }
```

See Detail [CoolSMS SDK Example](https://www.coolsms.co.kr/PHP_SDK_Example)

```
CoolSMS::message() // return \Nurigo\Api\Message
CoolSMS::groupMessage() // return \Nurigo\Api\GroupMessage
CoolSMS::image() // \Nurigo\Api\Image
CoolSMS::senderID() // \Nurigo\Api\SenderID
```

Requirements
------------

[](#requirements)

- Laravel 5.\*
- PHP 5.5 or greater
- Composer
- PHP CURL extension
- PHP JSON extension

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity62

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

Unknown

Total

1

Last Release

2797d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2e36271e2101817b1eb7f680212a93e21aed375fcad90e995452e3972f6e1e92?d=identicon)[AcidF0x](/maintainers/AcidF0x)

---

Top Contributors

[![0xFoxTail](https://avatars.githubusercontent.com/u/35107271?v=4)](https://github.com/0xFoxTail "0xFoxTail (6 commits)")

---

Tags

coolsmscoolsms-clientcoolsms-phplaravel-packagesmssms-client

### Embed Badge

![Health badge](/badges/acidf0x-laracool/health.svg)

```
[![Health](https://phpackages.com/badges/acidf0x-laracool/health.svg)](https://phpackages.com/packages/acidf0x-laracool)
```

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[spatie/laravel-route-discovery

Auto register routes using PHP attributes

23645.0k2](/packages/spatie-laravel-route-discovery)[esign/laravel-conversions-api

A laravel wrapper package around the Facebook Conversions API

69145.4k](/packages/esign-laravel-conversions-api)[didww/didww-api-3-php-sdk

PHP SDK for DIDWW API 3

1218.2k](/packages/didww-didww-api-3-php-sdk)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

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