var-lab / lexoffice-bundle
A Symfony bundle to integrate the lexoffice api.
Package info
git.var-lab.com/var-lab-it/lexoffice-bundle.git
Type:symfony-bundle
pkg:composer/var-lab/lexoffice-bundle
Requires
- php: >=8.1
- ext-ctype: *
- ext-iconv: *
- ext-posix: *
- guzzlehttp/guzzle: ^7.8
- symfony/config: >=7.4
- symfony/dependency-injection: >=7.4
- symfony/filesystem: >=7.4
- symfony/http-client: >=7.4
- symfony/serializer: >=7.4
- symfony/validator: >=7.4
- thecodingmachine/safe: >=2.1 || ^3.3
Requires (Dev)
- ext-pcntl: *
- ergebnis/composer-normalize: ^2.52
- jangregor/phpstan-prophecy: ^2.3
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.2
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpstan/phpstan-strict-rules: ^2.0
- phpunit/phpunit: ^13.2
- spatie/phpunit-snapshot-assertions: ^5.4
- symfony/browser-kit: ^8.1
- symfony/framework-bundle: ^8.1
- symfony/http-kernel: ^8.1
- symfony/phpunit-bridge: ^8.1
- symfony/stopwatch: ^8.1
- symfony/var-exporter: ^8.1
- thecodingmachine/phpstan-safe-rule: ^1.4
- var-lab/coding-standard: ^2.0
Suggests
None
Provides
None
Conflicts
Replaces
None
README
Introduction
This bundle integrates the lexoffice public API into Symfony, utilizing Symfony's serializer to convert API responses into objects. Compatible with Symfony 6.4.
Installation
- Download the Bundle
Add the bundle to your composer.json:
composer require var-lab/lexoffice-bundle
2. Register the Bundle
(should be done automatically by composer)
return [
// ...
VarLabIT\LexofficeBundle\VarLabITLexofficeBundle::class => ['all' => true],
];
3. Add configuration
Create the config file config/packages/var_lab_it_lexoffice.yaml with following content:
var_lab_it_lexoffice:
api_key: '%env(LEXOFFICE_API_KEY)%'
add the api key to your .env:
# ...
LEXOFFICE_API_KEY=<your-api-key>
Usage
The following API functions are currently covered:
- Contacts
- [x] fetch contact
- [x] create contact
- [x] update contact
- Invoices
- [x] create invoice
- [x] update invoice
- [x] fetch invoice
- [x] download invoice pdf
The lexoffice bundle is currently undergoing further development. Your own pull requests are welcome.
Contacts
Create a new contact:
<?php
use VarLabIT\LexofficeBundle\Entity\Address;
use VarLabIT\LexofficeBundle\Entity\Company as LexofficeCompany;
use VarLabIT\LexofficeBundle\Entity\Contact;
use VarLabIT\LexofficeBundle\Entity\ContactRole;
use VarLabIT\LexofficeBundle\Entity\Enum\AddressType;
use VarLabIT\LexofficeBundle\Entity\Enum\RoleType;
use VarLabIT\LexofficeBundle\Entity\Person;
use VarLabIT\LexofficeBundle\LexofficeClient;
class CityPageController extends AbstractController {
public function __construct(
private readonly CompanyRepository $companyRepository,
private readonly LexofficeClient $lexofficeClient,
)
{
}
private function getContactObject(Company $company): Contact
{
$contact = new Contact();
$contact
->setVersion(0)
->addRole(RoleType::CUSTOMER, new ContactRole())
->setCompany(
(new LexofficeCompany())
->setName($company->getName())
->addContactPerson(
(new Person())
->setFirstName($company->getGivenName())
->setLastName($company->getFamilyName())
->setEmailAddress($company->getInvoiceEmail())
->setPrimary(true)
->setPhoneNumber($company->getContactPhone())
),
)
->addAddress(
AddressType::BILLING,
(new Address())
->setSupplement('Rechnungsadresse')
->setStreet($company->getAddress())
->setZip($company->getZipcode())
->setCity($company->getCity())
->setCountryCode($company->getCountry())
);
return $contact;
}
public function createContact(int $companyId): Response {
$company = $this->companyRepository->find($companyId);
$contact = $this->createContact($company);
$contact = $this->lexofficeClient->createContact($contact);
$company
->setVersion($contact->getVersion())
->setLexofficeId($contact->getId());
}
}
Update a contact:
public function createContact(int $companyId): Response {
$company = $this->companyRepository->find($companyId);
$contact = $this->createContact($company);
$contact = $this->lexofficeClient->updateContact($contact);
$company
->setVersion($contact->getVersion())
->setLexofficeId($contact->getId());
}
Maintainer
This bundle is maintained and created by var-lab IT GmbH and contributors.