PHPackages                             minchao/mitake-laravel - 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. minchao/mitake-laravel

ActiveLibrary

minchao/mitake-laravel
======================

Laravel Package for Mitake's PHP SDK

0.0.3(7y ago)47111BSD-3-ClausePHPPHP &gt;=5.6CI failing

Since Feb 10Pushed 7y ago1 watchersCompare

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

READMEChangelogDependencies (5)Versions (4)Used By (0)

mitake-laravel
==============

[](#mitake-laravel)

[![Build Status](https://camo.githubusercontent.com/a83f876dc937e0e425916c624548c8acee0e098a090172b1fd0b792002e89d36/68747470733a2f2f7472617669732d63692e6f72672f6d696e6368616f2f6d6974616b652d6c61726176656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/minchao/mitake-laravel)[![Latest Stable Version](https://camo.githubusercontent.com/55e3758fa9f13994d6255a77bbbebabd0a5c310ad39937f38d3698b4a0d314ba/68747470733a2f2f706f7365722e707567782e6f72672f6d696e6368616f2f6d6974616b652d6c61726176656c2f762f737461626c65)](https://packagist.org/packages/minchao/mitake-laravel)[![Latest Unstable Version](https://camo.githubusercontent.com/cde0b065a569bef365f4314e0f3607f661216ac2cec824134fe1bd135344a913/68747470733a2f2f706f7365722e707567782e6f72672f6d696e6368616f2f6d6974616b652d6c61726176656c2f762f756e737461626c65)](https://packagist.org/packages/minchao/mitake-laravel)[![composer.lock](https://camo.githubusercontent.com/5b6ec4778ed13a13c60722c2e82e89f1d863293b54117d3c7664505d0131cf93/68747470733a2f2f706f7365722e707567782e6f72672f6d696e6368616f2f6d6974616b652d6c61726176656c2f636f6d706f7365726c6f636b)](https://packagist.org/packages/minchao/mitake-laravel)

This is a simple Laravel service provider for making it easy to access the [Mitake PHP SDK](https://github.com/minchao/mitake-php) in your Laravel and Lumen applications.

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

[](#installation)

The Mitake service provider can be installed via [Composer](https://getcomposer.org/).

```
composer require minchao/mitake-laravel

```

To use the Mitake service provider, you must register the provider when bootstrapping your application.

### Laravel

[](#laravel)

#### Laravel 5.5 and above

[](#laravel-55-and-above)

The package will automatically register provider and facade.

#### Laravel 5.4 and below

[](#laravel-54-and-below)

Add `Mitake\Laravel\MitakeServiceProvider` to the `providers` section of your `config/app.php`:

```
    'providers' => [
        // ...
        Mitake\Laravel\MitakeServiceProvider::class,
    ];
```

Add Mitake facade to the `aliases` section of your `config/app.php`:

```
    'aliases' => [
        // ...
        'Mitake' => Mitake\Laravel\Facade\Mitake::class,
    ];
```

Or use the facade class directly:

```
use Mitake\Laravel\Facade\Mitake;
```

### Lumen

[](#lumen)

Register the `Mitake\Laravel\MitakeServiceProvider` in your `bootstrap/app.php`:

```
    $app->register(Mitake\Laravel\MitakeServiceProvider::class);
```

Copy the `mitake.php` config file in to your project:

```
mkdir config
cp vendor/minchao/mitake-laravel/config/mitake.php config/mitake.php

```

Configuration
-------------

[](#configuration)

Publish the package configuration using Artisan (Lumen doesn't support).

```
php artisan vendor:publish --provider="Mitake\Laravel\MitakeServiceProvider"

```

Then update `config/mitake.php` with your credentials. Alternatively, you can update your `.env` file.

```
MITAKE_USERNAME=username
MITAKE_PASSWORD=password

```

Usage
-----

[](#usage)

To use the Mitake SDK within your app, you need to retrieve it from the service container:

```
$mitake = app(\Mitake\Client::class);

$message = (new \Mitake\Message\Message())
    ->setDstaddr('0987654321')
    ->setSmbody('Hello, Laravel IoC Container');
$result = $mitake->send($message);
```

Or, you can use the Mitake facade:

```
$message = (new \Mitake\Message\Message())
    ->setDstaddr('0987654321')
    ->setSmbody('Hello, Facade');
$result = Mitake::send($message);
```

License
-------

[](#license)

See the [LICENSE](LICENSE) file for license rights and limitations (BSD 3-Clause).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

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

Total

3

Last Release

2805d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/012c62fd0b515f28ef424acb16b0543c9cad0be578be7cd0a606fad1ad91fffc?d=identicon)[minchao](/maintainers/minchao)

---

Top Contributors

[![minchao](https://avatars.githubusercontent.com/u/3313639?v=4)](https://github.com/minchao "minchao (15 commits)")

---

Tags

laravel-service-providermitakesmssms-sdklaravel-service-providermitakemitake-service-provider

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/minchao-mitake-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/minchao-mitake-laravel/health.svg)](https://phpackages.com/packages/minchao-mitake-laravel)
```

###  Alternatives

[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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