kevinem/places-scout-laravel

Places Scout Client for Laravel 5
473 1
Install
composer require kevinem/places-scout-laravel
Latest Version:1.1.0
License:MIT
Last Updated:May 15, 2019
Links: GitHub  ·  Packagist
Maintainer: kevinem

Places Scout Laravel 5

Latest Stable Version License

The Places Scout API is a highly scalable SAAS platform based on the popular Service Stack open source solution for high performance REST web services, and can deliver a wide range of valuable SEO data for enterprise level clients.

Install

You can pull in the package via composer:

$ composer require kevinem/places-scout-laravel

Configuration

After installing the package, register the KevinEm\PlacesScoutLaravel\PlacesScoutLaravelServiceProvider in your config/app.php configuration file:

'providers' => [
    // Other service providers...

    KevinEm\PlacesScoutLaravel\PlacesScoutLaravelServiceProvider::class,
],

Also, you can add the PlacesScoutLaravel facade to the aliases array in your config/app.php configuration file:

'aliases' => [
    // Other facades...
    
    'PlacesScoutLaravel' => KevinEm\PlacesScoutLaravel\Facades\PlacesScoutLaravel::class,
],

Publish the config using the following command:

$ php artisan vendor:publish

Add your credentials to your .env file:

PLACES_SCOUT_USERNAME=
PLACES_SCOUT_PASSWORD=

Documentation

documentation

Example Usage

$clients = PlacesScoutLaravel::clients()->lists();

$rankingReports = PlacesScoutLaravel::rankingReports()->lists();

$run = PlacesScoutLaravel::rankingReports()->getRun('7Qs0xGHWuE', '53mM466');

PlacesScoutLaravel::reputationReports()->create([
    'query' => [
        'Name' => 'testing'
    ],
    'json' => [
        'BusinessInfo' => [
            'BusinessName' => 'Test Business',
            'FullAddress' => '123 Test St',
            'StreetAddress' => '123 Test St',
            'City' => 'Pasadena',
            'State' => 'CA',
            'ZipCode' => '91770',
            'PhoneNumber' => '1231231234',
            'Country' => 'UnitedStates'
        ]
    ]
]);

License

The MIT License (MIT) Copyright (c) 2016 Kevin Em

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

628,058,007 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907
laravel/tinker

Powerful REPL for the Laravel framework.

485,678,092 7,440