avido / laravel-brickset-api-client
Laravel API Client for the Brickset API
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/avido/laravel-brickset-api-client
Requires
- php: ^7.4
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- orchestra/testbench: ^5.3
- overtrue/phplint: ^1.2
- phpunit/phpunit: ^9.2
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2025-10-10 19:10:45 UTC
README
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);