PHPackages                             racoonsoftware/netgsm - 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. racoonsoftware/netgsm

ActiveLibrary

racoonsoftware/netgsm
=====================

Laravel 5.1 Net Gsm Sms service package

v2.0.0(10y ago)0441[1 issues](https://github.com/raccoonsoftware/netgsm/issues)[1 PRs](https://github.com/raccoonsoftware/netgsm/pulls)BSDPHP

Since Nov 15Pushed 10y ago3 watchersCompare

[ Source](https://github.com/raccoonsoftware/netgsm)[ Packagist](https://packagist.org/packages/racoonsoftware/netgsm)[ Docs](https://github.com/raccoonsoftware/netgsm)[ RSS](/packages/racoonsoftware-netgsm/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

Laravel Net GSM Package
=======================

[](#laravel-net-gsm-package)

[![Gitter](https://camo.githubusercontent.com/abe08b740a4156153736f791393ec4da6619c4be73212e75769f52edacc0e2b5/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667)](https://gitter.im/raccoonsoftware/netgsm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)[![Latest Stable Version](https://camo.githubusercontent.com/d6a9c252a9661ddb9f5db050b22c3e8ab3ee75e78617c81160b37144ad4425c3/68747470733a2f2f706f7365722e707567782e6f72672f7261636f6f6e736f6674776172652f6e657467736d2f762f737461626c65)](https://packagist.org/packages/racoonsoftware/netgsm)[![Total Downloads](https://camo.githubusercontent.com/ea61d1339dd20b25cfcc64c0132f43dd2cd6bbf356c44df04e37edd30cac3924/68747470733a2f2f706f7365722e707567782e6f72672f7261636f6f6e736f6674776172652f6e657467736d2f646f776e6c6f616473)](https://packagist.org/packages/racoonsoftware/netgsm)[![Latest Unstable Version](https://camo.githubusercontent.com/fecff141ab13f47d9a764f8ee212608225e48db3c8607c22d9bfadabf50ebd43/68747470733a2f2f706f7365722e707567782e6f72672f7261636f6f6e736f6674776172652f6e657467736d2f762f756e737461626c65)](https://packagist.org/packages/racoonsoftware/netgsm)[![License](https://camo.githubusercontent.com/06e6d382c970397826a453c4f5c1f2382a062540d822508880bdc549c2e2cad9/68747470733a2f2f706f7365722e707567782e6f72672f7261636f6f6e736f6674776172652f6e657467736d2f6c6963656e7365)](https://packagist.org/packages/racoonsoftware/netgsm)

- **AUTHOR** MEHMET NURI OZTURK

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

[](#installation)

You should install this package through Composer.

Edit your project's `composer.json` file to require `raccoonsoftware/netgsm`.

```
"require": {
    "raccoonsoftware/netgsm": "*"
},

```

Next, update Composer from the Terminal: `composer update`

Once this operation completes, the final step is to add the service provider. Open `app/config/app.php`, and add a new item to the providers array.

`'RaccoonSoftware\NetGsm\NetGsmServiceProvider::class',`

And add a new item to the aliases array.

`'NetGsm' => 'RaccoonSoftware\NetGsm\Facade\NetGsm::class',`

Give this command
`php artisan vendor:publish`

and open config/netgsm.php file and fill necesary information.

Usage
-----

[](#usage)

Option 1

```
use RaccoonSoftware\NetGsm\NetGsm;

Route::get('/', function () {

    $sms = new NetGsm();

    return $sms->setGsmNumber("5xxxxxxxxxx")->setContent("Hello World!")->send();
});

```

Option 2

```
use RaccoonSoftware\NetGsm\NetGsm;

Route::get('/', function () {

    $sms = new NetGsm();
    $sms->setGsmNumber("5xxxxxxxxx");
    $sms->setContent("Hello New World");

    return $sms->send();
});

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity65

Established project with proven stability

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 ~7 days

Total

3

Last Release

3821d ago

Major Versions

v1.0.1 → v2.0.02015-11-28

### Community

Maintainers

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

---

Tags

laravelsmsnetgsm

### Embed Badge

![Health badge](/badges/racoonsoftware-netgsm/health.svg)

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

###  Alternatives

[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[matthewbdaly/laravel-sms

A Laravel and Lumen integration for matthewbdaly/sms-client to enable sending SMS messages

3529.8k](/packages/matthewbdaly-laravel-sms)

PHPackages © 2026

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