PHPackages                             codetech/laravel-vendus - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. codetech/laravel-vendus

ActiveLibrary[API Development](/categories/api)

codetech/laravel-vendus
=======================

Vendus (Cegid Vendus) integration for Laravel — sync clients and products, and issue certified invoices and sales documents.

v2.0.0(3w ago)07MITPHPPHP ^8.2CI passing

Since Aug 27Pushed 3w ago1 watchersCompare

[ Source](https://github.com/CodeTechAgency/laravel-vendus)[ Packagist](https://packagist.org/packages/codetech/laravel-vendus)[ RSS](/packages/codetech-laravel-vendus/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (6)Dependencies (9)Versions (7)Used By (0)

[![Laravel Vendus](https://raw.githubusercontent.com/CodeTechAgency/laravel-vendus/main/art/banner.png)](https://raw.githubusercontent.com/CodeTechAgency/laravel-vendus/main/art/banner.png)

Laravel Vendus
==============

[](#laravel-vendus)

[![Latest version](https://camo.githubusercontent.com/3ee3eb7e783ea2c3d9877926a5bd17b42d75836db17ecfd6a3a3d08886ae1dcc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f436f6465546563684167656e63792f6c61726176656c2d76656e6475733f7374796c653d666c61742d737175617265)](https://github.com/CodeTechAgency/laravel-vendus/releases)[![Total downloads](https://camo.githubusercontent.com/5cc978fbaf4e33dcaf14bd28920e01ff136d9c22613c2babe7af260aeef4a56c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636f6465746563682f6c61726176656c2d76656e6475733f7374796c653d666c61742d737175617265)](https://packagist.org/packages/codetech/laravel-vendus)[![Tests](https://camo.githubusercontent.com/7a0b4886bb0950fa7c414dbb62aa9425b2b42e3a826fe71112d6cefb2774212d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f436f6465546563684167656e63792f6c61726176656c2d76656e6475732f74657374732e796d6c3f6272616e63683d6d61696e267374796c653d666c61742d737175617265266c6162656c3d7465737473)](https://github.com/CodeTechAgency/laravel-vendus/actions/workflows/tests.yml)[![GitHub license](https://camo.githubusercontent.com/637362c8a6b2232c321ecd4457786f7c5e984b4e80911987340784ae6d99a4a0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f436f6465546563684167656e63792f6c61726176656c2d76656e6475733f7374796c653d666c61742d737175617265)](https://github.com/CodeTechAgency/laravel-vendus/blob/main/LICENSE.txt)

Connect your Laravel application to [Vendus](https://www.vendus.pt), the Portuguese certified invoicing software. Keep your Eloquent models — customers and products — in sync with your Vendus account through a pair of drop-in traits, and build certified sales documents (invoices, receipts, credit notes) on top of a clean, fully testable HTTP client.

Quick start
-----------

[](#quick-start)

```
composer require codetech/laravel-vendus
```

Set your Vendus API key in `.env`:

```
VENDUS_API_KEY=your-api-key
```

Add a `vendus_id` column to the table of any model you want to sync, give the model the matching trait, and sync it:

```
use CodeTech\Vendus\Contracts\VendusClient;
use CodeTech\Vendus\Traits\InteractsWithVendusClient;

class Customer extends Model implements VendusClient
{
    use InteractsWithVendusClient;
}
```

```
use CodeTech\Vendus\VendusResource;

$customer = Customer::find(1);

$resource = new VendusResource($customer);
$resource->sync();
```

`sync()` creates the customer on Vendus (or updates it if it already exists — clients are matched by their Vendus `external_reference`) and stores the resulting Vendus ID on your model. Products work the same way with the `InteractsWithVendusProduct` trait and `VendusProduct` contract, matched by their Vendus product `reference`.

Documentation
-------------

[](#documentation)

Configuration, customizing the attribute mappings, sales documents, translations — it's all covered in [the documentation](https://www.codetech.pt/open-source/laravel-vendus).

Upgrading from 1.x? See the [upgrade guide](https://github.com/CodeTechAgency/laravel-vendus/blob/main/UPGRADE.md).

Changelog
---------

[](#changelog)

Every release is documented on the [GitHub releases page](https://github.com/CodeTechAgency/laravel-vendus/releases).

Contributing
------------

[](#contributing)

Contributions are welcome! Please read the [contributing guidelines](https://github.com/CodeTechAgency/laravel-vendus/blob/main/CONTRIBUTING.md) before opening an issue or pull request.

Security
--------

[](#security)

If you discover a security vulnerability, please follow the [security policy](https://github.com/CodeTechAgency/laravel-vendus/blob/main/SECURITY.md) — do not report it publicly.

Support
-------

[](#support)

If this package helps you, consider [starring the repository](https://github.com/CodeTechAgency/laravel-vendus) — it helps other developers discover it.

---

License
-------

[](#license)

**codetech/laravel-vendus** is open-sourced software licensed under the [MIT license](https://github.com/CodeTechAgency/laravel-vendus/blob/main/LICENSE.txt).

About CodeTech
--------------

[](#about-codetech)

[CodeTech](https://www.codetech.pt) is a web development agency based in Matosinhos, Portugal. Oh, and we LOVE Laravel!

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance94

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~358 days

Recently: every ~447 days

Total

6

Last Release

27d ago

Major Versions

v1.1.3 → v2.0.02026-07-21

PHP version history (2 changes)v1.0.0PHP ^7.3|^8.0

v2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/6adaef8b30d5d0dee7bc2484fd9b0a9ad33e38afb78fc5d18d79d6239c811c76?d=identicon)[jfrosorio](/maintainers/jfrosorio)

---

Top Contributors

[![jfrosorio](https://avatars.githubusercontent.com/u/17640929?v=4)](https://github.com/jfrosorio "jfrosorio (22 commits)")

---

Tags

cegid-vendusinvoicinglaravellaravel-packagephpportugalvenduslaravelvenduscodetechfaturaçãofaturasreciboslaravel-vendus

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/codetech-laravel-vendus/health.svg)

```
[![Health](https://phpackages.com/badges/codetech-laravel-vendus/health.svg)](https://phpackages.com/packages/codetech-laravel-vendus)
```

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k113.1M997](/packages/laravel-socialite)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5226.7k](/packages/simplestats-io-laravel-client)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

818355.4k3](/packages/defstudio-telegraph)[api-platform/laravel

API Platform support for Laravel

58190.1k21](/packages/api-platform-laravel)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1349.3k1](/packages/jasara-php-amzn-selling-partner-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
