infusionweb / laravel-marketo-rest-api
Provides a Laravel 5 service provider and facade for Marketo REST API Client.
Installs: 271 235
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: >=5.5.9
- dchesterton/marketo-rest-api: ^0.0.5
- illuminate/support: ~5.0
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- phpunit/phpunit: ~4.6
This package is auto-updated.
Last update: 2024-10-28 09:21:35 UTC
README
An enhanced wrapper for using Marketo REST API Client package in Laravel
This package provides a Laravel 5 service provider and facade for dchesterton/marketo-rest-api, which is a Composer package that serves as an "unofficial PHP client for the Marketo.com REST API."
When enabled and configured, this package allows a more convenient use of the Marketo REST API Client functionality, through a Laravel facade, as well as adding some configuration options for added ease of use.
Installation
Step 1: Composer
Via Composer command line:
$ composer require infusionweb/laravel-marketo-rest-api
Or add the package to your composer.json
:
{ "require": { "infusionweb/laravel-marketo-rest-api": "~0.1.0" } }
Step 2: Register the Service Provider
Add the service provider to your config/app.php
:
'providers' => [ // InfusionWeb\Laravel\Marketo\MarketoClientProvider::class, ];
Step 3: Enable the Facade
Add the facade to your config/app.php
:
'aliases' => [ // 'Marketo' => InfusionWeb\Laravel\Marketo\MarketoClientFacade::class, ];
Step 4: Publish the package config file
$ php artisan vendor:publish --provider="InfusionWeb\Laravel\Marketo\MarketoClientProvider"
You may now setup Marketo authentication and other preferences by editing the config/marketo.php
file.
Usage Example
<?php use Marketo; $fields = [ 'email' => 'email@example.com', 'firstName' => 'Example', 'lastName' => 'User', ]; try { $result = Marketo::createOrUpdateLead($fields); } catch(\InfusionWeb\Laravel\Marketo\Exceptions\MarketoClientException $e) { die('We couldn’t save your information!'); }
For additional API documentation, see the original Marketo REST API Client documentation, as well as Marketo's own REST API documentation.
Credits
License
The MIT License (MIT). Please see License File for more information.