PHPackages                             karamanisweb/simplesmsgreek - 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. karamanisweb/simplesmsgreek

AbandonedArchivedLibrary

karamanisweb/simplesmsgreek
===========================

A wrapper for SimpleSMS Laravel package that provides additional Greek sms drivers.

v1.0.4(8y ago)120MITPHPPHP &gt;=7.0.0

Since Jul 10Pushed 8y ago1 watchersCompare

[ Source](https://github.com/KaramanisWeb/SimpleSMSGreek)[ Packagist](https://packagist.org/packages/karamanisweb/simplesmsgreek)[ RSS](/packages/karamanisweb-simplesmsgreek/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

SimpleSMSGreek
==============

[](#simplesmsgreek)

[![Build Status](https://camo.githubusercontent.com/5506ddecf77043e1fd2f30d862a6ea488cd515ca5b2d9058ddabe72a5f02abf3/68747470733a2f2f7472617669732d63692e6f72672f4b6172616d616e69735765622f53696d706c65534d53477265656b2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/KaramanisWeb/SimpleSMSGreek)[![Latest Stable Version](https://camo.githubusercontent.com/990715987ec57900a01936e2016b3dfb04a3c5767c447788b8ae69752248a26d/68747470733a2f2f706f7365722e707567782e6f72672f4b6172616d616e69735765622f53696d706c65534d53477265656b2f762f737461626c65)](https://packagist.org/packages/KaramanisWeb/SimpleSMSGreek)[![Latest Unstable Version](https://camo.githubusercontent.com/a1c8302a713ef56ba6578771ceb87b12211c5cb1f3462726e8fd7a62e13d3fb4/68747470733a2f2f706f7365722e707567782e6f72672f4b6172616d616e69735765622f53696d706c65534d53477265656b2f762f756e737461626c65)](https://packagist.org/packages/karamanisweb/simplesmsgreek)[![License](https://camo.githubusercontent.com/53e06b05fb4601f0895d0c2abc2f57bdb7b4d78777698cd8bc3d6caa55ecf522/68747470733a2f2f706f7365722e707567782e6f72672f4b6172616d616e69735765622f53696d706c65534d53477265656b2f6c6963656e7365)](https://packagist.org/packages/karamanisweb/simplesmsgreek)[![Total Downloads](https://camo.githubusercontent.com/e455445ad652e2d593b07c5d2aab21d45cf4794e807108483370974a6e00d5e0/68747470733a2f2f706f7365722e707567782e6f72672f4b6172616d616e69735765622f53696d706c65534d53477265656b2f646f776e6c6f616473)](https://packagist.org/packages/karamanisweb/simplesmsgreek)

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

[](#introduction)

SimpleSMSGreek is a wrapper for [SimpleSMS](https://github.com/simplesoftwareio/simple-sms) package that provides additional Greek SMS drivers. [simplesoftwareio/simple-sms](https://github.com/simplesoftwareio/simple-sms). This is a package for [Laravel](http://laravel.com/) and provides the capability to use Greek gateways to send SMS. These are the extra providers: [Smsn](http://www.smsn.gr), [Ez4usms](http://ez4usms.com), [Sms.net.gr](http://www.sms.net.gr/)

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

[](#requirements)

#### Laravel 5

[](#laravel-5)

- PHP: &gt;= 7.0.0
- simplesoftwareio/simple-sms &gt;= 3.1.0

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

[](#installation)

#### Composer

[](#composer)

You can run the composer command `composer require karamanisweb/simplesmsgreek`or you can add the package to your `require` in your `composer/json` file:

```
"require": {
    "karamanisweb/simplesmsgreek": "1.0.*"
}

```

And then run the command `composer update`.

This procedure will install the package into your application.

#### Service Providers

[](#service-providers)

Once you have installed the package to your laravel application.

Add `KaramanisWeb\SimpleSMSGreek\SmsServiceProvider::class` into your `config/app.php` config file inside the `providers` array.

#### Aliases

[](#aliases)

Now all you have to do is register the Facade.

Add `'SMS' => SimpleSoftwareIO\SMS\Facades\SMS::class` in your `config/app.php` config file inside the `aliases` array.

#### Publish Configuration

[](#publish-configuration)

If you need to change to make changes into the configuration file you must run the following command to save your config file to your local app:

```
 php artisan vendor:publish --provider="KaramanisWeb\SimpleSMSGreek\SmsServiceProvider"

```

This will copy the configuration files to your `config` folder.

or you can manual copy the config file from `vendors/karamanisweb/simplesmsgreek/Config` directory to your local app.

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

[](#documentation)

This package adds 3 greek SMS drivers

- Smsn
- Ez4usms
- Sms.net.gr

#### Smsn

[](#smsn)

```
'driver' => env('SMS_DRIVER', 'smsn'),
'smsn' => [
   'username' => env('SMSN_USERNAME', 'Your Smsn Username'),
   'password' => env('SMSN_PASSWORD', 'Your Smsn Password'),
   'unicode' => env('SMSN_UNICODE', false),
   ]
```

#### Ez4usms

[](#ez4usms)

```
'driver' => env('SMS_DRIVER', 'ez4us'),
'ez4us' => [
    'username' => env('EZ4US_USERNAME', 'Your Ez4us Username'),
    'password' => env('EZ4US_PASSWORD', 'Your Ez4us Password'),
    'unicode' => env('EZ4US_UNICODE', false),
    ]
```

#### Sms.net.gr

[](#smsnetgr)

```
'driver' => env('SMS_DRIVER', 'smsnetgr'),
'smsnetgr' => [
    'username' => env('SMSNETGR_USERNAME', 'Your Smsnetgr Username'),
    'api_password' => env('SMSNETGR_API_PASS', 'Your Smsnetgr API Password'),
    'api_token' => env('SMSNETGR_API_TOKEN', 'Your Smsnetgr API Token'),
    'unicode' => env('SMSNETGR_UNICODE', false),
    ]
```

The documentation for SimpleSMS can be found [here.](https://www.simplesoftware.io/docs/simple-sms)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity61

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

Total

4

Last Release

3196d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/45e9c25431b1c0b048710e8c09776914f0eccaf7111843cb9648908250a6dd31?d=identicon)[KaramanisWeb](/maintainers/KaramanisWeb)

---

Tags

ez4usmsgreek-smslaravellaravel5-packagephpsimple-smssimplesmssmssmsnsmsnetgrlaravelsmsgreektext messagesdriverssimple-sms

### Embed Badge

![Health badge](/badges/karamanisweb-simplesmsgreek/health.svg)

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

###  Alternatives

[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)[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)[mrabbani/laravel_infobip

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

112.9k](/packages/mrabbani-laravel-infobip)[smart-crowd/simple-sms-drivers

Addition providers for simple SMS laravel package

101.0k](/packages/smart-crowd-simple-sms-drivers)

PHPackages © 2026

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