drecon / molar
Moip on laravel
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/drecon/molar
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2025-11-03 20:24:27 UTC
README
Moip with Laravel
Setup
In the require key of composer.json file add the following
"drecon/molar": "dev-master"
Run the Composer update comand
$ composer update
In your config/app.php add 'Drecon\Molar\MolarServiceProvider' to the end of the $providers array
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Drecon\Molar\MolarServiceProvider',
),