| Package Data | |
|---|---|
| Maintainer Username: | knieber | 
| Package Create Date: | 2016-11-02 | 
| Package Last Update: | 2016-11-22 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-11-02 15:07:06 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 252,086 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 20 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
composer require generationtux/laravel-marketo-rest-api
config/app.php// For Laravel
// Service Provider
'providers' => [
    ...
    GenTux\Artisan\Marketo\LaravelServiceProvider::class,
];
// Facade
'aliases' => [
    'Marketo' => GenTux\Artisan\Marketo\MarketoFacade::class,
];
// For Lumen
// app.php
$app->register(GenTux\Artisan\Marketo\LumenServiceProvider::class);
php artisan vendor:publish --provider="GenTux\Artisan\Marketo\MarketoServiceProvider"
If you're using Lumen and do not have access to publish a config, use the code below fo config and name it marketo.php:
<?php
return [
    'auth' => [
        'api_url' => env('MARKETO_API_URL'),
        'client_id' => env('MARKETO_CLIENT_ID'),
        'client_secret' => env('MARKETO_CLIENT_SECRET'),
    ]
];