Looking to hire Laravel developers? Try LaraJobs

laravel-brickset-api-client maintained by avido

Description
Laravel API Client for the Brickset API
Last update
2020/11/10 08:50 (dev-master)
License
Links
Downloads
4

Comments
comments powered by Disqus

Laravel Brickset Api Client

Build Status Latest Stable Version Total Downloads License composer.lock

Laravel API Client for https://brickset.com/tools/webservices/v3

Installation

composer require avido/laravel-brickset-api-client

Optional Push configuration

php artisan vendor:publish

Configuration

Edit your .env file and add the following variables:
BRICKSET_APIKEY BRICKSET_USERNAME BRICKSET_PASSWORD

Alternatively you can also edit /config/brickset-api.php (if you published the configuration)

Facade

BricksetApiClient

Need to set apikey / user / password programmatically?

$client = new BricksetApiClient($apiKey, $username, $password);