PHPackages                             volkanmetin/smsapi - 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. volkanmetin/smsapi

AbandonedArchivedLibrary[API Development](/categories/api)

volkanmetin/smsapi
==================

SMS API for Laravel 5

1.0.1(10y ago)029[1 issues](https://github.com/volkanmetin/smsapi/issues)MITPHPPHP &gt;=5.4.0

Since Jun 28Pushed 10y ago1 watchersCompare

[ Source](https://github.com/volkanmetin/smsapi)[ Packagist](https://packagist.org/packages/volkanmetin/smsapi)[ RSS](/packages/volkanmetin-smsapi/feed)WikiDiscussions master Synced 1mo ago

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

Laravel 5 için SMS Paketi
=========================

[](#laravel-5-için-sms-paketi)

[![Latest Stable Version](https://camo.githubusercontent.com/bd0343cd356d17e1f231b0bd47676524b100635fb08233cdcb5763ebdcb55d8b/68747470733a2f2f706f7365722e707567782e6f72672f766f6c6b616e6d6574696e2f736d736170692f762f737461626c652e737667)](https://packagist.org/packages/volkanmetin/smsapi) [![Total Downloads](https://camo.githubusercontent.com/e1fcae69358c8e5aeacfecb42b9359198bc2e7b88b129bd6b2a193baaac3cba8/68747470733a2f2f706f7365722e707567782e6f72672f766f6c6b616e6d6574696e2f736d736170692f646f776e6c6f6164732e737667)](https://packagist.org/packages/volkanmetin/smsapi) [![Latest Unstable Version](https://camo.githubusercontent.com/f563a88379b18ddbdbeb4f4f6a6e695419c67a56c24ab28821d257ab9eaa4c6d/68747470733a2f2f706f7365722e707567782e6f72672f766f6c6b616e6d6574696e2f736d736170692f762f756e737461626c652e737667)](https://packagist.org/packages/volkanmetin/smsapi) [![License](https://camo.githubusercontent.com/58f4e3de6eba7826b6a919f94ca2a873a34bd80b487eef69b1049fdbfb39d3dc/68747470733a2f2f706f7365722e707567782e6f72672f766f6c6b616e6d6574696e2f736d736170692f6c6963656e73652e737667)](https://packagist.org/packages/volkanmetin/smsapi)

Bu paket sayesinde Laravel 5.x kullanılan projelerinizde tekli veya çoklu sms gönderebilir, bakiye ve originator sorgulayabilirsiniz.

Uyarı, hata ve bilgilendirme için Türkçe dillerinde uyarı ve bilgi mesajlarını barındırır.

Kurulum
-------

[](#kurulum)

- Öncelikle `composer.json` dosyanızdaki `require` kısmına aşağıdaki değeri ekleyin:

    ```
    "volkanmetin/smsapi": "~1"
    ```

    Alternatif olarak `composer require volkanmetin/smsapi:~1` komutu ile de paketi ekleyebilirsiniz.
- Ardından composer paketlerinizi güncellemelisiniz. `composer update` komutu ile bunu yapabilirsiniz.
- Şimdi de `app/config/app.php` dosyasını açın, `providers` içine en alta şunu girin:

    ```
    'Volkanmetin\Smsapi\SmsapiServiceProvider',
    ```
- Şimdi yine aynı dosyada `aliases` altına şu değeri girin:

    ```
    'Smsapi' => 'Volkanmetin\Smsapi\Facades\Smsapi',
    ```
- Şimdi de environment'ınıza konfigürasyon dosyasını paylaşmalısınız. Bunun için aşağıdaki komutu çalıştırın:

    ```
    php artisan vendor:publish
    ```
- `app/config/smsapi.php` dosyası paylaşılacak. Burada smsapi için size atanan kullanıcı adı, parola ve originator (sender\_id) değerlerini girmelisiniz.

Kullanım
--------

[](#kullanım)

\####Birine o anda tekil SMS göndermek için:

```
$send = Smsapi::send('05355469076', 'Merhaba');
echo $send->last_message;
```

\####SMS gönderildi mi ?

```
$send = Smsapi::send('05355469076', 'Merhaba');
if($send) {
    echo 'SMS başarı ile gönderildi!';
} else {
    echo $send->last_message;
}
```

\####Birden fazla kişiye aynı anda aynı SMS'i göndermek için:

```
$kisiler = array('00905355469076', '+905355469076', '05355469076', '5355469076');
$send = Smsapi::send($kisiler, 'Merhaba');
echo $send->last_message;
```

Veya

```
$send = Smsapi::send('00905355469076', '+905355469076', '05355469076', '5355469076', 'Merhaba');
echo $send->last_message;
```

\####Kalan Kontör Sorgulaması için:

```
echo Smsapi::getCredit();
```

\####Originatörleri listelemek için:

```
$originators = Smsapi::getOriginators();
dd($originators);
```

#### Gelecek bir tarihe SMS yollamak için:

[](#gelecek-bir-tarihe-sms-yollamak-için)

```
echo Smsapi::send('05355469076', 'Geç gidecek mesaj', '2099-06-30 15:00'); //saniye yok, dikkat!
```

#### Farklı bir Originatör (Sender ID) kullanarak SMS yollamak için:

[](#farklı-bir-originatör-sender-id-kullanarak-sms-yollamak-için)

```
echo Smsapi::send('05355469076', 'merhaba', '', 'diğerOriginator');
```

Notlar
------

[](#notlar)

Oldukça geliştirilmesi gerek.

Lisans
------

[](#lisans)

Bu yazılım paketi MIT lisansı ile lisanslanmıştır.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

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

3978d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6a143401d91a9da5f130015aa9b12155fd00a8a31349f232695604c8105bd3b0?d=identicon)[volkanmetin](/maintainers/volkanmetin)

---

Tags

apilaravelsmslaravel5turacellsmsorigin

### Embed Badge

![Health badge](/badges/volkanmetin-smsapi/health.svg)

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

###  Alternatives

[mollie/laravel-mollie

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

3624.1M28](/packages/mollie-laravel-mollie)[ardakilic/mutlucell

Mutlucell SMS API wrapper for sending sms text messages for Laravel

457.3k](/packages/ardakilic-mutlucell)

PHPackages © 2026

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