setono/budbee-bundle

Use Budbee in your Symfony application

Maintainers

πŸ‘ loevgaard

Package info

github.com/Setono/BudbeeBundle

Type:symfony-bundle

pkg:composer/setono/budbee-bundle

Statistics

Installs: 3 908

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.1.0 2024-03-06 11:00 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 204e108dd6bd44a3e5b9ff279eaa9ba4e809d9ef

  • Joachim LΓΈvgaard <joachim.woop@loevgaard.dk>

This package is auto-updated.

Last update: 2026-06-06 16:19:27 UTC


README

πŸ‘ Latest Version
πŸ‘ Software License
πŸ‘ Build Status

Integrates the Budbee PHP SDK into your Symfony application.

Installation

To install this bundle, simply run:

composer require setono/budbee-bundle

Usage

<?php

use Setono\Budbee\Client\ClientInterface;

require_once __DIR__ . '/../vendor/autoload.php';

final class YourService
{
 private ClientInterface $client;

 public function __construct(ClientInterface $client)
 {
 $this->client = $client;
 }

 public function __invoke(): void
 {
 // do something with the client
 $boxes = $this->client->boxes()->getAvailableLockers('DK', '1159');

 // ...
 }
}