PHPackages                             unicodeveloper/laravel-jusibe - 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. unicodeveloper/laravel-jusibe

ActiveLibrary[API Development](/categories/api)

unicodeveloper/laravel-jusibe
=============================

A Jusibe Bridge for Laravel 5

1.0.1(6y ago)814.3kMITPHPPHP ^7.0|^7.1|^7.2CI failing

Since Sep 10Pushed 6y ago1 watchersCompare

[ Source](https://github.com/unicodeveloper/laravel-jusibe)[ Packagist](https://packagist.org/packages/unicodeveloper/laravel-jusibe)[ Docs](https://twitter.com/unicodeveloper)[ RSS](/packages/unicodeveloper-laravel-jusibe/feed)WikiDiscussions master Synced 4w ago

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

laravel-jusibe
==============

[](#laravel-jusibe)

[![Latest Stable Version](https://camo.githubusercontent.com/86bc60365e5312545d60f8552d9f6c98d86be7cf01029e7567cfa5800df18e6a/68747470733a2f2f706f7365722e707567782e6f72672f756e69636f646576656c6f7065722f6c61726176656c2d6a75736962652f762f737461626c652e737667)](https://packagist.org/packages/unicodeveloper/laravel-jusibe)[![License](https://camo.githubusercontent.com/c76dd3eae6e2768d8fde718bab2f6d86ebad20f17d4f5abd3d14722558962664/68747470733a2f2f706f7365722e707567782e6f72672f756e69636f646576656c6f7065722f6c61726176656c2d6a75736962652f6c6963656e73652e737667)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/7b90951d260a6f4182b6f5c552b7f3cba4847b609f7ac48d98d96ef286e10ead/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f756e69636f646576656c6f7065722f6c61726176656c2d6a75736962652e737667)](https://travis-ci.org/unicodeveloper/laravel-jusibe)[![Quality Score](https://camo.githubusercontent.com/d2a475c62852a834c7a50358e8c2ecb8e443cabcbb5b6643a91268e1c3135ef4/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f756e69636f646576656c6f7065722f6c61726176656c2d6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/unicodeveloper/laravel-jusibe)[![Total Downloads](https://camo.githubusercontent.com/5286ccd21d42041e0f8dc16d3a57cd01b62c4102471c3070cff32af2e464d89a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f756e69636f646576656c6f7065722f6c61726176656c2d6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/unicodeveloper/laravel-jusibe)

> Laravel 5 Wrapper for Jusibe

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

[](#installation)

Before you go ahead to install the package, make sure you have [Jusibe PHP library](https://github.com/unicodeveloper/jusibe-php-lib) installed.

[PHP](https://php.net) 7.0+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required First, pull in the package through Composer.

```
$ composer require unicodeveloper/laravel-jusibe
```

Another alternative is to simply add the following line to the require block of your `composer.json` file.

```
"unicodeveloper/laravel-jusibe": "1.0.*"

```

Then run `composer install` or `composer update` to download it and have the autoloader updated.

Once Laravel Jusibe is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

- `Unicodeveloper\JusibePack\JusibeServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Jusibe' => Unicodeveloper\JusibePack\Facades\Jusibe::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Unicodeveloper\JusibePack\JusibeServiceProvider"
```

A configuration-file named `jusibe.php` with some sensible defaults will be placed in your `config` directory:

```
