Laravel package for the Serpstack API.
Run the following command to install this package into your project.
composer require wdevs/laravel-serpstack
Optional: publish the config files with the following command:
php artisan vendor:publish --provider="WDevs\LaravelSerpstack\Providers\LaravelSerpstackServiceProvider"
Set the environment variables in your .env file like this:
SERPSTACK_API_KEY="YOURAPIKEY"
SERPSTACK_SECURE="true"
You will need Composer to install this package and a valid Serpstack API key.
After installing this package with Composer, create a new Serpstack instance. And set the your Serpstack API key in your env file.
Something like this:
$client = new LaravelSerpstack();
And call the desired endpoint
$client->search()->searchFor('mcdonalds');
The current implemented endpoints are:
- GET /search
- GET /locations
Documentation for the available parameters can be found here: https://serpstack.com/documentation
Copy the phpunit.xml.dist and rename it to phpunit.xml. Set the env variables in the phpunit.xml files.
PLEASE NOTE: running the tests will cost you credits!!!!
- SERPSTACK_API_KEY: A valid Serpstack access key
- SERPSTACK_SECURE : True for calling the API over HTTPS
Please see the phpunit.xml.dist for the template.
Run the tests in the Tests directory with PHPUnit.
- Serpstack - For the API
- PHPUnit - Test Framework
- Laravel - Package Framework
- Laravel Package Boilerplate - For boiler template this package
Please see CHANGELOG for more information what has changed recently.
Please help us to develop this package. Every input and/or feedback is really appreciated! Please see CONTRIBUTING for details.
If you discover any security related issues, please email us instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.