PHPackages                             virulenta/talo-laravel-sdk - 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. virulenta/talo-laravel-sdk

ActiveLibrary

virulenta/talo-laravel-sdk
==========================

Laravel SDK for Talo API

07↓100%PHP

Since Mar 18Pushed 1mo agoCompare

[ Source](https://github.com/raulvinet/talo-laravel-sdk)[ Packagist](https://packagist.org/packages/virulenta/talo-laravel-sdk)[ RSS](/packages/virulenta-talo-laravel-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Talo Laravel SDK
================

[](#talo-laravel-sdk)

SDK Laravel para integrar Talo.

Instalación
-----------

[](#instalación)

```
composer require Virulenta/talo-laravel-sdk
```

Publicar config
---------------

[](#publicar-config)

```
php artisan vendor:publish --tag=talo-config
```

Variables de entorno
--------------------

[](#variables-de-entorno)

```
TALO_BASE_URL=https://sandbox-api.talo.com.ar
TALO_USER_ID=
TALO_CLIENT_ID=
TALO_CLIENT_SECRET=
TALO_TOKEN_TTL_SECONDS=3300
TALO_TIMEOUT=30
TALO_CONNECT_TIMEOUT=10
TALO_WEBHOOK_ENABLED=true
TALO_WEBHOOK_ROUTE=/webhooks/talo
TALO_WEBHOOK_SECRET=
```

Uso
---

[](#uso)

### Crear pago

[](#crear-pago)

```
use Virulenta\TaloLaravel\DTOs\CreatePaymentData;
use Virulenta\TaloLaravel\Facades\TaloSdk;

$response = TaloSdk::createPayment(
    new CreatePaymentData(
        external_id: 'ORDER_1001',
        amount: 15000,
        redirect_url: route('checkout.ok'),
        webhook_url: route('talo.webhook'),
        motive: 'Compra web'
    )
);

$paymentUrl = data_get($response->data, 'payment_url');
```

### Consultar pago

[](#consultar-pago)

```
$response = TaloSdk::getPayment('payment_id');
```

### Actualizar precio

[](#actualizar-precio)

```
use Virulenta\TaloLaravel\DTOs\UpdatePaymentPriceData;

$response = TaloSdk::updatePaymentPrice(
    'payment_id',
    new UpdatePaymentPriceData(amount: 20000)
);
```

### Crear customer

[](#crear-customer)

```
use Virulenta\TaloLaravel\DTOs\CreateCustomerData;

$response = TaloSdk::createCustomer(
    new CreateCustomerData(
        alias: 'cliente001',
        customer_id: 'USER_1',
        name: 'Raul Vinet',
        email: 'raul@example.com',
        webhook_url: route('talo.webhook')
    )
);
```

Recomendación de integración
----------------------------

[](#recomendación-de-integración)

1. Crear orden local.
2. Crear payment en Talo.
3. Guardar `external_id` y `payment_id`.
4. Redirigir a `payment_url`.
5. Recibir webhook.
6. Confirmar el pago consultando la API.
7. Marcar la orden como paga.

Desarrollo local con path repository
------------------------------------

[](#desarrollo-local-con-path-repository)

En tu proyecto Laravel principal:

```
"repositories": [
  {
    "type": "path",
    "url": "../talo-laravel-sdk"
  }
]
```

Luego:

```
composer require Virulenta/talo-laravel-sdk:@dev
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance59

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/358a26f4e1f71dab7eded693c1b932b6937c4aed8a1f8a6593f45829e8f87517?d=identicon)[raulvinet](/maintainers/raulvinet)

---

Top Contributors

[![raulvinet](https://avatars.githubusercontent.com/u/402317?v=4)](https://github.com/raulvinet "raulvinet (5 commits)")

### Embed Badge

![Health badge](/badges/virulenta-talo-laravel-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/virulenta-talo-laravel-sdk/health.svg)](https://phpackages.com/packages/virulenta-talo-laravel-sdk)
```

PHPackages © 2026

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